Represents a logger that throws away anything sent its way. More...
Static Public Member Functions | |
static ILogger | CreateNullLogger () |
Create an instance of a null logger, a logger that doesn't do anything. | |
Private Member Functions | |
NullLogger () | |
Constructor. | |
void ILogger. | LogTrace (string msg) |
Log trace messages to the configured output. | |
void ILogger. | LogInfo (string msg) |
Log informational messages to the configured output. | |
void ILogger. | LogError (string msg) |
Log error messages to the configured output. | |
void IDisposable. | Dispose () |
Nothing to do for a graceful shutdown. | |
Additional Inherited Members | |
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 a logger that throws away anything sent its way.
Definition at line 13 of file Bridge_NullLogger.cs.
|
inlineprivate |
Constructor.
Definition at line 18 of file Bridge_NullLogger.cs.
Referenced by NullLogger.CreateNullLogger().
|
inlinestatic |
Create an instance of a null logger, a logger that doesn't do anything.
Definition at line 55 of file Bridge_NullLogger.cs.
References NullLogger.NullLogger().
Referenced by Logger.Logger().
|
inlineprivate |
Nothing to do for a graceful shutdown.
Definition at line 44 of file Bridge_NullLogger.cs.
|
inlineprivate |
Log error messages to the configured output.
msg | The message to log. |
Implements ILogger.
Definition at line 33 of file Bridge_NullLogger.cs.
|
inlineprivate |
Log informational messages to the configured output.
msg | The message to log. |
Implements ILogger.
Definition at line 29 of file Bridge_NullLogger.cs.
|
inlineprivate |
Log trace messages to the configured output.
msg | The message to log. |
Implements ILogger.
Definition at line 25 of file Bridge_NullLogger.cs.