C# Class Sharpex2D.Debug.Logging.Logger

Mostrar archivo Open project: ThuCommix/Sharpex2D Class Usage Examples

Public Methods

Method Description
Critical ( string message ) : void

Logs a new critical message.

Error ( string message ) : void

Logs a new error message.

Info ( string message ) : void

Logs a new info message.

Warn ( string message ) : void

Logs a new warning message.

Private Methods

Method Description
Engine ( string message ) : void

Logs a new engine message.

Format ( string message, LogLevel level ) : void

Formats the message.

Logger ( Type type ) : System

Initializes a new Logger class.

Method Details

Critical() public method

Logs a new critical message.
public Critical ( string message ) : void
message string The Message.
return void

Error() public method

Logs a new error message.
public Error ( string message ) : void
message string The Message.
return void

Info() public method

Logs a new info message.
public Info ( string message ) : void
message string The Message.
return void

Warn() public method

Logs a new warning message.
public Warn ( string message ) : void
message string The Message.
return void