C# Class Tasque.Logger

This class provides a generic logging facility. By default all information is written to standard out and a log file, but other loggers are pluggable.
Show file Open project: GNOME/tasque

Public Methods

Method Description
Debug ( string msg ) : void
Error ( string msg ) : void
Fatal ( string msg ) : void
Info ( string msg ) : void
Log ( LogLevel lvl, string msg ) : void
Mute ( ) : void
Unmute ( ) : void
Warn ( string msg ) : void

Method Details

Debug() public static method

public static Debug ( string msg ) : void
msg string
return void

Error() public static method

public static Error ( string msg ) : void
msg string
return void

Fatal() public static method

public static Fatal ( string msg ) : void
msg string
return void

Info() public static method

public static Info ( string msg ) : void
msg string
return void

Log() public static method

public static Log ( LogLevel lvl, string msg ) : void
lvl LogLevel
msg string
return void

Mute() public static method

public static Mute ( ) : void
return void

Unmute() public static method

public static Unmute ( ) : void
return void

Warn() public static method

public static Warn ( string msg ) : void
msg string
return void