Interface ILogger
Interface for logging within the engine
public interface ILogger
Methods
Debug(string)
Logs the specified message at the debug level.
void Debug(string message)
Parameters
message
stringThe message.
Debug(string, params object[])
Logs the specified message at the debug level.
void Debug(string message, params object[] args)
Parameters
Error(string)
Logs the specified message at the error level.
void Error(string message)
Parameters
message
stringThe message.
Error(string, params object[])
Logs the specified message at the error level.
void Error(string message, params object[] args)
Parameters
Info(string)
Logs the specified message at the info level.
void Info(string message)
Parameters
message
stringThe message.
Info(string, params object[])
Logs the specified message at the info level.
void Info(string message, params object[] args)
Parameters
Warning(string)
Logs the specified message at the warning level.
void Warning(string message)
Parameters
message
stringThe message.
Warning(string, params object[])
Logs the specified message at the warning level.
void Warning(string message, params object[] args)