C# Class Chinchilla.Logging.NullLogger

Default ILogger noop implementation
Inheritance: ILogger
显示文件 Open project: jonnii/chinchilla

Public Methods

Method Description
Debug ( string message ) : void
DebugFormat ( string format ) : void
Error ( Exception exception ) : void
Error ( Exception exception, string message ) : void
ErrorFormat ( Exception exception, string format ) : void
Info ( string message ) : void
InfoFormat ( string format ) : void

Method Details

Debug() public method

public Debug ( string message ) : void
message string
return void

DebugFormat() public method

public DebugFormat ( string format ) : void
format string
return void

Error() public method

public Error ( Exception exception ) : void
exception System.Exception
return void

Error() public method

public Error ( Exception exception, string message ) : void
exception System.Exception
message string
return void

ErrorFormat() public method

public ErrorFormat ( Exception exception, string format ) : void
exception System.Exception
format string
return void

Info() public method

public Info ( string message ) : void
message string
return void

InfoFormat() public method

public InfoFormat ( string format ) : void
format string
return void