Class NullLoggger
Describes logger not logging anywhere.
public class NullLoggger : ILogger
- Inheritance
-
NullLoggger
- Implements
- Inherited Members
Methods
Debug(Exception, string)
Writes message to log with Debug severity, including parsed exception.
public void Debug(Exception exception, string message)
Parameters
Debug(string)
Writes message to log with Debug severity.
public void Debug(string message)
Parameters
message
stringMessage to be added into log.
Error(Exception, string)
Writes message to log with Error severity, including parsed exception.
public void Error(Exception exception, string message)
Parameters
Error(string)
Writes message to log with Error severity.
public void Error(string message)
Parameters
message
stringMessage to be added into log.
Info(Exception, string)
Writes message to log with Info severity, including parsed exception.
public void Info(Exception exception, string message)
Parameters
Info(string)
Writes message to log with Info severity.
public void Info(string message)
Parameters
message
stringMessage to be added into log.
Trace(Exception, string)
Writes message to log with Trace severity, including parsed exception.
public void Trace(Exception exception, string message)
Parameters
Trace(string)
Writes message to log with Trace severity.
public void Trace(string message)
Parameters
message
stringMessage to be added into log.
Warn(Exception, string)
Writes message to log with Warning severity, including parsed exception.
public void Warn(Exception exception, string message)
Parameters
Warn(string)
Writes message to log with Warning severity.
public void Warn(string message)
Parameters
message
stringMessage to be added into log.