C# 클래스 BclExtras.Logger

Responsible for reporting unexpected errors for the developers to debug. Static class to make error reporting simple so I won't shun using it
파일 보기 프로젝트 열기: scottwis/tiny

공개 메소드들

메소드 설명
Error ( string message ) : void
Error ( string message, Exception ex ) : void
Error ( string category, string message ) : void
Error ( string category, string message, Exception ex ) : void
Log ( LogItemType type, string category, string message, Exception ex ) : void
Warning ( string message ) : void
Warning ( string message, Exception ex ) : void
Warning ( string category, string message ) : void
Warning ( string category, string message, Exception ex ) : void

비공개 메소드들

메소드 설명
Debug ( string message ) : void
Debug ( string message, Exception ex ) : void
Debug ( string category, string message ) : void
Debug ( string category, string message, Exception ex ) : void
Log ( LogItem info, Exception ex ) : void
LogCore ( LogItemType type, string category, string message, Exception ex ) : void
OnLogEventCaptured ( LogItemEventArgs info ) : void
Trace ( string message ) : void
Trace ( string message, Exception ex ) : void
Trace ( string category, string message ) : void
Trace ( string category, string message, Exception ex ) : void

메소드 상세

Error() 공개 정적인 메소드

public static Error ( string message ) : void
message string
리턴 void

Error() 공개 정적인 메소드

public static Error ( string message, Exception ex ) : void
message string
ex System.Exception
리턴 void

Error() 공개 정적인 메소드

public static Error ( string category, string message ) : void
category string
message string
리턴 void

Error() 공개 정적인 메소드

public static Error ( string category, string message, Exception ex ) : void
category string
message string
ex System.Exception
리턴 void

Log() 공개 정적인 메소드

public static Log ( LogItemType type, string category, string message, Exception ex ) : void
type LogItemType
category string
message string
ex System.Exception
리턴 void

Warning() 공개 정적인 메소드

public static Warning ( string message ) : void
message string
리턴 void

Warning() 공개 정적인 메소드

public static Warning ( string message, Exception ex ) : void
message string
ex System.Exception
리턴 void

Warning() 공개 정적인 메소드

public static Warning ( string category, string message ) : void
category string
message string
리턴 void

Warning() 공개 정적인 메소드

public static Warning ( string category, string message, Exception ex ) : void
category string
message string
ex System.Exception
리턴 void