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
messagestringThe 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
messagestringThe 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
messagestringThe 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
messagestringThe message.
Warning(string, params object[])
Logs the specified message at the warning level.
void Warning(string message, params object[] args)