C# Класс MediaOwl.Core.Logging.DebugLog

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

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

Метод Описание
DebugLog ( Type type ) : System

The Constructor

Error ( Exception exception ) : void

Logs the exception. Logs the ctor-param type as well.

Info ( string format ) : void

Logs the message as info.

Warn ( string format ) : void

Logs the message as a warning.

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

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

The Constructor
public DebugLog ( Type type ) : System
type System.Type The type that calls this class
Результат System

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

Logs the exception. Logs the ctor-param type as well.
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

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

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