C# 클래스 Aspects.Logging.Loggers.NullLogger

Represents a logger that does nothing
상속: ILogger
파일 보기 프로젝트 열기: vnvizitiu/AOP

공개 메소드들

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

Logs the message with debug level.

Error ( string message, Exception exception ) : void

Logs the message and exception with error level.

Fatal ( string message, Exception exception ) : void

Logs the message and exception with fatal level.

Info ( string message ) : void

Logs the message with debug level.

Trace ( string message ) : void

Logs the message with trace level.

Warn ( string message ) : void

Logs the message with warn level.

메소드 상세

Debug() 공개 메소드

Logs the message with debug level.
public Debug ( string message ) : void
message string The message.
리턴 void

Error() 공개 메소드

Logs the message and exception with error level.
public Error ( string message, Exception exception ) : void
message string The message.
exception System.Exception The exception.
리턴 void

Fatal() 공개 메소드

Logs the message and exception with fatal level.
public Fatal ( string message, Exception exception ) : void
message string The message.
exception System.Exception The exception.
리턴 void

Info() 공개 메소드

Logs the message with debug level.
public Info ( string message ) : void
message string The message.
리턴 void

Trace() 공개 메소드

Logs the message with trace level.
public Trace ( string message ) : void
message string The message.
리턴 void

Warn() 공개 메소드

Logs the message with warn level.
public Warn ( string message ) : void
message string The message.
리턴 void