C# Class BlueCollar.EmptyLogger

Implements ILogger as a stub of no-ops.
Inheritance: ILogger
Afficher le fichier Open project: ChadBurggraf/blue-collar

Méthodes publiques

Méthode Description
Debug ( string format ) : void

Logs a debug message.

Error ( Exception ex ) : void

Logs an exception.

Error ( Exception ex, string format ) : void

Logs an error.

Error ( string format ) : void

Logs an error.

Info ( string format ) : void

Logs an information message.

Warn ( string format ) : void

Logs a warning.

Method Details

Debug() public méthode

Logs a debug message.
public Debug ( string format ) : void
format string The format of the message to log.
Résultat void

Error() public méthode

Logs an exception.
public Error ( Exception ex ) : void
ex System.Exception The exception to log.
Résultat void

Error() public méthode

Logs an error.
public Error ( Exception ex, string format ) : void
ex System.Exception The exception to log.
format string The format of the message to log.
Résultat void

Error() public méthode

Logs an error.
public Error ( string format ) : void
format string The format of the message to log.
Résultat void

Info() public méthode

Logs an information message.
public Info ( string format ) : void
format string The format of the message to log.
Résultat void

Warn() public méthode

Logs a warning.
public Warn ( string format ) : void
format string The format of the message to log.
Résultat void