C# Class Anotar.LibLog.LogTo

Provides logging functions.
Afficher le fichier Open project: Fody/Anotar

Méthodes publiques

Méthode Description
Debug ( ) : void

Writes the diagnostic message at the Debug level.

Debug ( Func message ) : void

Writes the diagnostic message at the Debug level.

Debug ( string message ) : void

Writes the diagnostic message at the Debug level.

DebugException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Debug level.

DebugException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Debug level.

Error ( ) : void

Writes the diagnostic message at the Error level.

Error ( Func message ) : void

Writes the diagnostic message at the Error level.

Error ( string message ) : void

Writes the diagnostic message at the Error level.

ErrorException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Error level.

ErrorException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Error level.

Fatal ( ) : void

Writes the diagnostic message at the Fatal level.

Fatal ( Func message ) : void

Writes the diagnostic message at the Fatal level.

Fatal ( string message ) : void

Writes the diagnostic message at the Fatal level.

FatalException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Fatal level.

FatalException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Fatal level.

Info ( ) : void

Writes the diagnostic message at the Info level.

Info ( Func message ) : void

Writes the diagnostic message at the Info level.

Info ( string message ) : void

Writes the diagnostic message at the Info level.

InfoException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Info level.

InfoException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Info level.

Trace ( ) : void

Writes the diagnostic message at the Trace level.

Trace ( Func message ) : void

Writes the diagnostic message at the Trace level.

Trace ( string message ) : void

Writes the diagnostic message at the Trace level.

TraceException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Trace level.

TraceException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Trace level.

Warn ( ) : void

Writes the diagnostic message at the Warn level.

Warn ( Func message ) : void

Writes the diagnostic message at the Warn level.

Warn ( string message ) : void

Writes the diagnostic message at the Warn level.

WarnException ( Func message, Exception exception ) : void

Writes the diagnostic message and exception at the Warn level.

WarnException ( string message, Exception exception ) : void

Writes the diagnostic message and exception at the Warn level.

Method Details

Debug() public static méthode

Writes the diagnostic message at the Debug level.
public static Debug ( ) : void
Résultat void

Debug() public static méthode

Writes the diagnostic message at the Debug level.
public static Debug ( Func message ) : void
message Func The log message.
Résultat void

Debug() public static méthode

Writes the diagnostic message at the Debug level.
public static Debug ( string message ) : void
message string The message to log.
Résultat void

DebugException() public static méthode

Writes the diagnostic message and exception at the Debug level.
public static DebugException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

DebugException() public static méthode

Writes the diagnostic message and exception at the Debug level.
public static DebugException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void

Error() public static méthode

Writes the diagnostic message at the Error level.
public static Error ( ) : void
Résultat void

Error() public static méthode

Writes the diagnostic message at the Error level.
public static Error ( Func message ) : void
message Func The log message.
Résultat void

Error() public static méthode

Writes the diagnostic message at the Error level.
public static Error ( string message ) : void
message string The message to log.
Résultat void

ErrorException() public static méthode

Writes the diagnostic message and exception at the Error level.
public static ErrorException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

ErrorException() public static méthode

Writes the diagnostic message and exception at the Error level.
public static ErrorException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void

Fatal() public static méthode

Writes the diagnostic message at the Fatal level.
public static Fatal ( ) : void
Résultat void

Fatal() public static méthode

Writes the diagnostic message at the Fatal level.
public static Fatal ( Func message ) : void
message Func The log message.
Résultat void

Fatal() public static méthode

Writes the diagnostic message at the Fatal level.
public static Fatal ( string message ) : void
message string The message to log.
Résultat void

FatalException() public static méthode

Writes the diagnostic message and exception at the Fatal level.
public static FatalException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

FatalException() public static méthode

Writes the diagnostic message and exception at the Fatal level.
public static FatalException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void

Info() public static méthode

Writes the diagnostic message at the Info level.
public static Info ( ) : void
Résultat void

Info() public static méthode

Writes the diagnostic message at the Info level.
public static Info ( Func message ) : void
message Func The log message.
Résultat void

Info() public static méthode

Writes the diagnostic message at the Info level.
public static Info ( string message ) : void
message string The message to log.
Résultat void

InfoException() public static méthode

Writes the diagnostic message and exception at the Info level.
public static InfoException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

InfoException() public static méthode

Writes the diagnostic message and exception at the Info level.
public static InfoException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void

Trace() public static méthode

Writes the diagnostic message at the Trace level.
public static Trace ( ) : void
Résultat void

Trace() public static méthode

Writes the diagnostic message at the Trace level.
public static Trace ( Func message ) : void
message Func The log message.
Résultat void

Trace() public static méthode

Writes the diagnostic message at the Trace level.
public static Trace ( string message ) : void
message string The message to log.
Résultat void

TraceException() public static méthode

Writes the diagnostic message and exception at the Trace level.
public static TraceException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

TraceException() public static méthode

Writes the diagnostic message and exception at the Trace level.
public static TraceException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void

Warn() public static méthode

Writes the diagnostic message at the Warn level.
public static Warn ( ) : void
Résultat void

Warn() public static méthode

Writes the diagnostic message at the Warn level.
public static Warn ( Func message ) : void
message Func The log message.
Résultat void

Warn() public static méthode

Writes the diagnostic message at the Warn level.
public static Warn ( string message ) : void
message string The message to log.
Résultat void

WarnException() public static méthode

Writes the diagnostic message and exception at the Warn level.
public static WarnException ( Func message, Exception exception ) : void
message Func The log message.
exception System.Exception An exception to be logged.
Résultat void

WarnException() public static méthode

Writes the diagnostic message and exception at the Warn level.
public static WarnException ( string message, Exception exception ) : void
message string The log message.
exception System.Exception An exception to be logged.
Résultat void