C# 클래스 BlueCollar.EmptyLogger

Implements ILogger as a stub of no-ops.
상속: ILogger
파일 보기 프로젝트 열기: ChadBurggraf/blue-collar

공개 메소드들

메소드 설명
Debug ( string format ) : void

Logs a debug message.

Error ( Exception ex ) : void

Logs an exception.

Error ( Exception ex, string format ) : void

Logs an error.

Error ( string format ) : void

Logs an error.

Info ( string format ) : void

Logs an information message.

Warn ( string format ) : void

Logs a warning.

메소드 상세

Debug() 공개 메소드

Logs a debug message.
public Debug ( string format ) : void
format string The format of the message to log.
리턴 void

Error() 공개 메소드

Logs an exception.
public Error ( Exception ex ) : void
ex System.Exception The exception to log.
리턴 void

Error() 공개 메소드

Logs an error.
public Error ( Exception ex, string format ) : void
ex System.Exception The exception to log.
format string The format of the message to log.
리턴 void

Error() 공개 메소드

Logs an error.
public Error ( string format ) : void
format string The format of the message to log.
리턴 void

Info() 공개 메소드

Logs an information message.
public Info ( string format ) : void
format string The format of the message to log.
리턴 void

Warn() 공개 메소드

Logs a warning.
public Warn ( string format ) : void
format string The format of the message to log.
리턴 void