C# Class ICSharpCode.Core.LoggingService

Class for easy logging.
Show file Open project: jumpinjackie/fdotoolbox Class Usage Examples

Public Methods

Method Description
Debug ( object message ) : void
DebugFormatted ( string format ) : void
Error ( object message ) : void
Error ( object message, Exception exception ) : void
ErrorFormatted ( string format ) : void
Fatal ( object message ) : void
Fatal ( object message, Exception exception ) : void
FatalFormatted ( string format ) : void
Info ( object message ) : void
InfoFormatted ( string format ) : void
Warn ( object message ) : void
Warn ( object message, Exception exception ) : void
WarnFormatted ( string format ) : void

Private Methods

Method Description
LoggingService ( ) : System

Method Details

Debug() public static method

public static Debug ( object message ) : void
message object
return void

DebugFormatted() public static method

public static DebugFormatted ( string format ) : void
format string
return void

Error() public static method

public static Error ( object message ) : void
message object
return void

Error() public static method

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

ErrorFormatted() public static method

public static ErrorFormatted ( string format ) : void
format string
return void

Fatal() public static method

public static Fatal ( object message ) : void
message object
return void

Fatal() public static method

public static Fatal ( object message, Exception exception ) : void
message object
exception System.Exception
return void

FatalFormatted() public static method

public static FatalFormatted ( string format ) : void
format string
return void

Info() public static method

public static Info ( object message ) : void
message object
return void

InfoFormatted() public static method

public static InfoFormatted ( string format ) : void
format string
return void

Warn() public static method

public static Warn ( object message ) : void
message object
return void

Warn() public static method

public static Warn ( object message, Exception exception ) : void
message object
exception System.Exception
return void

WarnFormatted() public static method

public static WarnFormatted ( string format ) : void
format string
return void