C# Class Wave.Defaults.DefaultLogger

Default Internal Logger Implementation If a consumer / producer does not specify a logger for Wave to use, this is the fallback for logging internal messages from Wave. Logs to the console.
Inheritance: ILogger
Mostrar archivo Open project: WaveServiceBus/WaveServiceBus

Public Methods

Method Description
Debug ( string message ) : void
DebugFormat ( string format ) : void
Error ( string message ) : void
ErrorFormat ( string format ) : void
Fatal ( string message ) : void
FatalFormat ( string format ) : void
Info ( string message ) : void
InfoFormat ( string format ) : void
Warn ( string message ) : void
WarnFormat ( string format ) : void

Private Methods

Method Description
Log ( LogLevel level, string message ) : 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 ( string message ) : void
message string
return void

ErrorFormat() public method

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

Fatal() public method

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

FatalFormat() public method

public FatalFormat ( string format ) : void
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

Warn() public method

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

WarnFormat() public method

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