C# 클래스 Anotar.Catel.LogTo

Provides logging functions.
파일 보기 프로젝트 열기: Fody/Anotar

공개 메소드들

메소드 설명
Debug ( ) : void

Writes the diagnostic message at the Debug level.

Debug ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Debug level.

Debug ( Func message ) : void

Writes the diagnostic message at the Debug level.

Debug ( string message ) : void

Writes the diagnostic message at the Debug level.

Error ( ) : void

Writes the diagnostic message at the Error level.

Error ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Error level.

Error ( Exception exception, string format ) : void

Writes the diagnostic message and exception at the Error level.

Error ( Func message ) : void

Writes the diagnostic message at the Error level.

Info ( ) : void

Writes the diagnostic message at the Info level.

Info ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Info level.

Info ( Func message ) : void

Writes the diagnostic message at the Info level.

Info ( string message ) : void

Writes the diagnostic message at the Info level.

Warning ( ) : void

Writes the diagnostic message at the Warn level.

Warning ( Exception exception, Func message ) : void

Writes the diagnostic message and exception at the Warn level.

Warning ( Func message ) : void

Writes the diagnostic message at the Warn level.

Warning ( string message ) : void

Writes the diagnostic message at the Warn level.

비공개 메소드들

메소드 설명
Debug ( Exception exception, string format ) : void
Error ( string message ) : void
Info ( Exception exception, string format ) : void
Warning ( Exception exception, string format ) : void

메소드 상세

Debug() 공개 정적인 메소드

Writes the diagnostic message at the Debug level.
public static Debug ( ) : void
리턴 void

Debug() 공개 정적인 메소드

Writes the diagnostic message and exception at the Debug level.
public static Debug ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
리턴 void

Debug() 공개 정적인 메소드

Writes the diagnostic message at the Debug level.
public static Debug ( Func message ) : void
message Func The log message.
리턴 void

Debug() 공개 정적인 메소드

Writes the diagnostic message at the Debug level.
public static Debug ( string message ) : void
message string The message to log.
리턴 void

Error() 공개 정적인 메소드

Writes the diagnostic message at the Error level.
public static Error ( ) : void
리턴 void

Error() 공개 정적인 메소드

Writes the diagnostic message and exception at the Error level.
public static Error ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
리턴 void

Error() 공개 정적인 메소드

Writes the diagnostic message and exception at the Error level.
public static Error ( Exception exception, string format ) : void
exception System.Exception An exception to be logged.
format string A containing format items.
리턴 void

Error() 공개 정적인 메소드

Writes the diagnostic message at the Error level.
public static Error ( Func message ) : void
message Func The log message.
리턴 void

Info() 공개 정적인 메소드

Writes the diagnostic message at the Info level.
public static Info ( ) : void
리턴 void

Info() 공개 정적인 메소드

Writes the diagnostic message and exception at the Info level.
public static Info ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
리턴 void

Info() 공개 정적인 메소드

Writes the diagnostic message at the Info level.
public static Info ( Func message ) : void
message Func The log message.
리턴 void

Info() 공개 정적인 메소드

Writes the diagnostic message at the Info level.
public static Info ( string message ) : void
message string The message to log.
리턴 void

Warning() 공개 정적인 메소드

Writes the diagnostic message at the Warn level.
public static Warning ( ) : void
리턴 void

Warning() 공개 정적인 메소드

Writes the diagnostic message and exception at the Warn level.
public static Warning ( Exception exception, Func message ) : void
exception System.Exception An exception to be logged.
message Func The log message.
리턴 void

Warning() 공개 정적인 메소드

Writes the diagnostic message at the Warn level.
public static Warning ( Func message ) : void
message Func The log message.
리턴 void

Warning() 공개 정적인 메소드

Writes the diagnostic message at the Warn level.
public static Warning ( string message ) : void
message string The message to log.
리턴 void