C# 클래스 RelicLogging.Log

Threading: Only the actual logging functions are thread-safe. That is, only Error, Output and Warning are thread safe, everythign else is single-thread only.
파일 보기 프로젝트 열기: jurney/P4Backup

공개 메소드들

메소드 설명
AddHandler ( ILogHandler handler ) : void
BeginBatch ( ) : void
EndBatch ( ) : void
EndBatch ( int &outputCount, int &warningCount, int &errorCount ) : void
Error ( string format ) : void

Threadsafe

GetHandlers ( Type handlerType ) : List
Output ( string format ) : void

Threadsafe

Warning ( string format ) : void

Threadsafe

메소드 상세

AddHandler() 공개 정적인 메소드

public static AddHandler ( ILogHandler handler ) : void
handler ILogHandler
리턴 void

BeginBatch() 공개 정적인 메소드

public static BeginBatch ( ) : void
리턴 void

EndBatch() 공개 정적인 메소드

public static EndBatch ( ) : void
리턴 void

EndBatch() 공개 정적인 메소드

public static EndBatch ( int &outputCount, int &warningCount, int &errorCount ) : void
outputCount int
warningCount int
errorCount int
리턴 void

Error() 공개 정적인 메소드

Threadsafe
public static Error ( string format ) : void
format string
리턴 void

GetHandlers() 공개 정적인 메소드

public static GetHandlers ( Type handlerType ) : List
handlerType System.Type
리턴 List

Output() 공개 정적인 메소드

Threadsafe
public static Output ( string format ) : void
format string
리턴 void

Warning() 공개 정적인 메소드

Threadsafe
public static Warning ( string format ) : void
format string
리턴 void