Class NullLogger
- Namespace
- Splat
- Assembly
- Splat.dll
a logger which will never emit any value.
public class NullLogger : ILogger
- Inheritance
-
NullLogger
- Implements
- Extension Methods
Constructors
NullLogger()
public NullLogger()
Properties
Level
Gets the level at which the target will emit messages.
public LogLevel Level { get; set; }
Property Value
Methods
Write(Exception, string, LogLevel)
Writes a message to the target.
public void Write(Exception exception, string message, LogLevel logLevel)
Parameters
exception
ExceptionThe exception that occured.
message
stringThe message to write.
logLevel
LogLevelThe severity level of the log message.
Write(Exception, string, Type, LogLevel)
Writes a message to the target.
public void Write(Exception exception, string message, Type type, LogLevel logLevel)
Parameters
exception
ExceptionThe exception that occured.
message
stringThe message.
type
TypeThe type.
logLevel
LogLevelThe log level.
Write(string, LogLevel)
Writes a message to the target.
public void Write(string message, LogLevel logLevel)
Parameters
Write(string, Type, LogLevel)
Writes a message to the target.
public void Write(string message, Type type, LogLevel logLevel)