C# Class StatLight.Core.Common.Logging.LoggerBase

Inheritance: ILogger
ファイルを表示 Open project: staxmanade/StatLight

Public Methods

Method Description
Debug ( string message ) : void
Debug ( string message, bool writeNewLine ) : void
Error ( string message ) : void
Information ( string message ) : void
ShouldLog ( LogChatterLevels checkWith ) : bool
Warning ( string message ) : void

Protected Methods

Method Description
LoggerBase ( LogChatterLevels logChatterLevel )

Method Details

Debug() public abstract method

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

Debug() public abstract method

public abstract Debug ( string message, bool writeNewLine ) : void
message string
writeNewLine bool
return void

Error() public abstract method

public abstract Error ( string message ) : void
message string
return void

Information() public abstract method

public abstract Information ( string message ) : void
message string
return void

LoggerBase() protected method

protected LoggerBase ( LogChatterLevels logChatterLevel )
logChatterLevel LogChatterLevels

ShouldLog() public method

public ShouldLog ( LogChatterLevels checkWith ) : bool
checkWith LogChatterLevels
return bool

Warning() public abstract method

public abstract Warning ( string message ) : void
message string
return void