C# Класс SfSdk.Logging.NLogLogger

A logger implementing NLog.
Наследование: ILog
Показать файл Открыть проект

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

Метод Описание
Error ( Exception exception ) : void

Logs the exception.

Info ( string format ) : void

Logs the message as info.

NLogLogger ( Type type ) : System

Creates an instance of the NLogLogger.

Warn ( string format ) : void

Logs the message as a warning.

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

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

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

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

Logs the message as info.
public Info ( string format ) : void
format string A formatted message.
Результат void

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

Creates an instance of the NLogLogger.
public NLogLogger ( Type type ) : System
type System.Type The type of the class which shall be logged.
Результат System

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

Logs the message as a warning.
public Warn ( string format ) : void
format string A formatted message.
Результат void