C# Class MediaOwl.Core.Logging.DebugLog

Inheritance: ILog
显示文件 Open project: Slesa/Playground

Public Methods

Method Description
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.

Method Details

DebugLog() public method

The Constructor
public DebugLog ( Type type ) : System
type System.Type The type that calls this class
return System

Error() public method

Logs the exception. Logs the ctor-param type as well.
public Error ( Exception exception ) : void
exception System.Exception The exception.
return void

Info() public method

Logs the message as info.
public Info ( string format ) : void
format string A formatted message.
return void

Warn() public method

Logs the message as a warning.
public Warn ( string format ) : void
format string A formatted message.
return void