<PackageReference Include="NUnit" Version="3.10.1" />

ILogger

public interface ILogger
Interface for logging within the engine
void Debug(string message)

Logs the specified message at the debug level.

void Debug(string message, object[] args)

Logs the specified message at the debug level.

void Error(string message)

Logs the specified message at the error level.

void Error(string message, object[] args)

Logs the specified message at the error level.

void Info(string message)

Logs the specified message at the info level.

void Info(string message, object[] args)

Logs the specified message at the info level.

void Warning(string message)

Logs the specified message at the warning level.

void Warning(string message, object[] args)

Logs the specified message at the warning level.