C# 클래스 MediaOwl.Core.Logging.DebugLog

상속: ILog
파일 보기 프로젝트 열기: Slesa/Playground

공개 메소드들

메소드 설명
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