Represents an implementation of a logger object as call from the Logger class. More...
Public Member Functions | |
void | LogTrace (string msg) |
Log trace messages to the configured output. | |
void | LogInfo (string msg) |
Log informational messages to the configured output. | |
void | LogError (string msg) |
Log error messages to the configured output. | |
Represents an implementation of a logger object as call from the Logger class.
Definition at line 17 of file Bridge_LoggerInterface.cs.
void LogError | ( | string | msg | ) |
Log error messages to the configured output.
msg | The message to log. |
Implemented in ConsoleLogger, FileLogger, and NullLogger.
Referenced by Logger.LogError().
void LogInfo | ( | string | msg | ) |
Log informational messages to the configured output.
msg | The message to log. |
Implemented in ConsoleLogger, FileLogger, and NullLogger.
Referenced by Logger.LogInfo().
void LogTrace | ( | string | msg | ) |
Log trace messages to the configured output.
msg | The message to log. |
Implemented in ConsoleLogger, FileLogger, and NullLogger.
Referenced by Logger.LogTrace().