C# Класс BlueCollar.NullLogger

Implements ILogger using all no-ops.
Наследование: System.MarshalByRefObject, ILogger
Показать файл Открыть проект

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

Метод Описание
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.

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

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

Logs a debug message.
public Debug ( string format ) : void
format string The format of the message to log.
Результат void

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

Logs an exception.
public Error ( Exception ex ) : void
ex System.Exception The exception to log.
Результат void

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

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.
Результат void

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

Logs an error.
public Error ( string format ) : void
format string The format of the message to log.
Результат void

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

Logs an information message.
public Info ( string format ) : void
format string The format of the message to log.
Результат void

Warn() публичный Метод

Logs a warning.
public Warn ( string format ) : void
format string The format of the message to log.
Результат void