C# Класс Anotar.Catel.LogTo

Provides logging functions.
Показать файл Открыть проект

Открытые методы

Метод Описание
Debug ( ) : void

Writes the diagnostic message at the Debug level.

Debug ( Exception exception, Func message ) : void

Writes the diagnostic message and exception 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.

Error ( ) : void

Writes the diagnostic message at the Error level.

Error ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Error level.

Error ( Exception exception, string format ) : void

Writes the diagnostic message and exception at the Error level.

Error ( Func message ) : void

Writes the diagnostic message at the Error level.

Info ( ) : void

Writes the diagnostic message at the Info level.

Info ( Exception exception, Func message ) : void

Writes the diagnostic message and exception 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.

Warning ( ) : void

Writes the diagnostic message at the Warn level.

Warning ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Warn level.

Warning ( Func message ) : void

Writes the diagnostic message at the Warn level.

Warning ( string message ) : void

Writes the diagnostic message at the Warn level.

Приватные методы

Метод Описание
Debug ( Exception exception, string format ) : void
Error ( string message ) : void
Info ( Exception exception, string format ) : void
Warning ( Exception exception, string format ) : void

Описание методов

Debug() публичный статический Метод

Writes the diagnostic message at the Debug level.
public static Debug ( ) : void
Результат void

Debug() публичный статический Метод

Writes the diagnostic message and exception at the Debug level.
public static Debug ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
Результат void

Debug() публичный статический Метод

Writes the diagnostic message at the Debug level.
public static Debug ( Func message ) : void
message Func The log message.
Результат void

Debug() публичный статический Метод

Writes the diagnostic message at the Debug level.
public static Debug ( string message ) : void
message string The message to log.
Результат void

Error() публичный статический Метод

Writes the diagnostic message at the Error level.
public static Error ( ) : void
Результат void

Error() публичный статический Метод

Writes the diagnostic message and exception at the Error level.
public static Error ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
Результат void

Error() публичный статический Метод

Writes the diagnostic message and exception at the Error level.
public static Error ( Exception exception, string format ) : void
exception System.Exception An exception to be logged.
format string A containing format items.
Результат void

Error() публичный статический Метод

Writes the diagnostic message at the Error level.
public static Error ( Func message ) : void
message Func The log message.
Результат void

Info() публичный статический Метод

Writes the diagnostic message at the Info level.
public static Info ( ) : void
Результат void

Info() публичный статический Метод

Writes the diagnostic message and exception at the Info level.
public static Info ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
Результат void

Info() публичный статический Метод

Writes the diagnostic message at the Info level.
public static Info ( Func message ) : void
message Func The log message.
Результат void

Info() публичный статический Метод

Writes the diagnostic message at the Info level.
public static Info ( string message ) : void
message string The message to log.
Результат void

Warning() публичный статический Метод

Writes the diagnostic message at the Warn level.
public static Warning ( ) : void
Результат void

Warning() публичный статический Метод

Writes the diagnostic message and exception at the Warn level.
public static Warning ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
Результат void

Warning() публичный статический Метод

Writes the diagnostic message at the Warn level.
public static Warning ( Func message ) : void
message Func The log message.
Результат void

Warning() публичный статический Метод

Writes the diagnostic message at the Warn level.
public static Warning ( string message ) : void
message string The message to log.
Результат void