C# 클래스 Common.Logging.Simple.NoOpLogger

상속: ILog
파일 보기 프로젝트 열기: net-commons/common-logging

공개 메소드들

메소드 설명
Debug ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Debug ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Debug ( System.Action formatMessageCallback ) : void

Ignores message.

Debug ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Debug ( object message ) : void

Ignores message.

Debug ( object message, Exception e ) : void

Ignores message.

DebugFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

DebugFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

DebugFormat ( string format ) : void

Ignores message.

DebugFormat ( string format, Exception exception ) : void

Ignores message.

Error ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Error ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Error ( System.Action formatMessageCallback ) : void

Ignores message.

Error ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Error ( object message ) : void

Ignores message.

Error ( object message, Exception e ) : void

Ignores message.

ErrorFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

ErrorFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

ErrorFormat ( string format ) : void

Ignores message.

ErrorFormat ( string format, Exception exception ) : void

Ignores message.

Fatal ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Fatal ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Fatal ( System.Action formatMessageCallback ) : void

Ignores message.

Fatal ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Fatal ( object message ) : void

Ignores message.

Fatal ( object message, Exception e ) : void

Ignores message.

FatalFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

FatalFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

FatalFormat ( string format ) : void

Ignores message.

FatalFormat ( string format, Exception exception ) : void

Ignores message.

Info ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Info ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Info ( System.Action formatMessageCallback ) : void

Ignores message.

Info ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Info ( object message ) : void

Ignores message.

Info ( object message, Exception e ) : void

Ignores message.

InfoFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

InfoFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

InfoFormat ( string format ) : void

Ignores message.

InfoFormat ( string format, Exception exception ) : void

Ignores message.

Trace ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Trace ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Trace ( System.Action formatMessageCallback ) : void

Ignores message.

Trace ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Trace ( object message ) : void

Ignores message.

Trace ( object message, Exception e ) : void

Ignores message.

TraceFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

TraceFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

TraceFormat ( string format ) : void

Ignores message.

TraceFormat ( string format, Exception exception ) : void

Ignores message.

Warn ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void

Ignores message.

Warn ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Warn ( System.Action formatMessageCallback ) : void

Ignores message.

Warn ( System.Action formatMessageCallback, Exception exception ) : void

Ignores message.

Warn ( object message ) : void

Ignores message.

Warn ( object message, Exception e ) : void

Ignores message.

WarnFormat ( IFormatProvider formatProvider, string format ) : void

Ignores message.

WarnFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void

Ignores message.

WarnFormat ( string format ) : void

Ignores message.

WarnFormat ( string format, Exception exception ) : void

Ignores message.

메소드 상세

Debug() 공개 메소드

Ignores message.
public Debug ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Debug() 공개 메소드

Ignores message.
public Debug ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception System.Exception The exception to log, including its stack Debug.
리턴 void

Debug() 공개 메소드

Ignores message.
public Debug ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Debug() 공개 메소드

Ignores message.
public Debug ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception System.Exception The exception to log, including its stack Debug.
리턴 void

Debug() 공개 메소드

Ignores message.
public Debug ( object message ) : void
message object
리턴 void

Debug() 공개 메소드

Ignores message.
public Debug ( object message, Exception e ) : void
message object
e System.Exception
리턴 void

DebugFormat() 공개 메소드

Ignores message.
public DebugFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
리턴 void

DebugFormat() 공개 메소드

Ignores message.
public DebugFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
exception System.Exception The exception to log.
리턴 void

DebugFormat() 공개 메소드

Ignores message.
public DebugFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

DebugFormat() 공개 메소드

Ignores message.
public DebugFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception System.Exception The exception to log.
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception System.Exception The exception to log, including its stack Error.
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception System.Exception The exception to log, including its stack Error.
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( object message ) : void
message object
리턴 void

Error() 공개 메소드

Ignores message.
public Error ( object message, Exception e ) : void
message object
e System.Exception
리턴 void

ErrorFormat() 공개 메소드

Ignores message.
public ErrorFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Errorrmation.
format string The format of the message object to log.
리턴 void

ErrorFormat() 공개 메소드

Ignores message.
public ErrorFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Errorrmation.
format string The format of the message object to log.
exception System.Exception The exception to log.
리턴 void

ErrorFormat() 공개 메소드

Ignores message.
public ErrorFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

ErrorFormat() 공개 메소드

Ignores message.
public ErrorFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception System.Exception The exception to log.
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception System.Exception The exception to log, including its stack Fatal.
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack Fatal.
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( object message ) : void
message object
리턴 void

Fatal() 공개 메소드

Ignores message.
public Fatal ( object message, Exception e ) : void
message object
e Exception
리턴 void

FatalFormat() 공개 메소드

Ignores message.
public FatalFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Fatalrmation.
format string The format of the message object to log.
리턴 void

FatalFormat() 공개 메소드

Ignores message.
public FatalFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Fatalrmation.
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

FatalFormat() 공개 메소드

Ignores message.
public FatalFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

FatalFormat() 공개 메소드

Ignores message.
public FatalFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack Info.
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack Info.
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( object message ) : void
message object
리턴 void

Info() 공개 메소드

Ignores message.
public Info ( object message, Exception e ) : void
message object
e Exception
리턴 void

InfoFormat() 공개 메소드

Ignores message.
public InfoFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
리턴 void

InfoFormat() 공개 메소드

Ignores message.
public InfoFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

InfoFormat() 공개 메소드

Ignores message.
public InfoFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

InfoFormat() 공개 메소드

Ignores message.
public InfoFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack trace.
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack trace.
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( object message ) : void
message object
리턴 void

Trace() 공개 메소드

Ignores message.
public Trace ( object message, Exception e ) : void
message object
e Exception
리턴 void

TraceFormat() 공개 메소드

Ignores message.
public TraceFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
리턴 void

TraceFormat() 공개 메소드

Ignores message.
public TraceFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

TraceFormat() 공개 메소드

Ignores message.
public TraceFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

TraceFormat() 공개 메소드

Ignores message.
public TraceFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( IFormatProvider formatProvider, System.Action formatMessageCallback ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( IFormatProvider formatProvider, System.Action formatMessageCallback, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting information.
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack Warn.
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( System.Action formatMessageCallback ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( System.Action formatMessageCallback, Exception exception ) : void
formatMessageCallback System.Action A callback used by the logger to obtain the message if log level is matched
exception Exception The exception to log, including its stack Warn.
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( object message ) : void
message object
리턴 void

Warn() 공개 메소드

Ignores message.
public Warn ( object message, Exception e ) : void
message object
e Exception
리턴 void

WarnFormat() 공개 메소드

Ignores message.
public WarnFormat ( IFormatProvider formatProvider, string format ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Information.
format string The format of the message object to log.
리턴 void

WarnFormat() 공개 메소드

Ignores message.
public WarnFormat ( IFormatProvider formatProvider, string format, Exception exception ) : void
formatProvider IFormatProvider An that supplies culture-specific formatting Information.
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void

WarnFormat() 공개 메소드

Ignores message.
public WarnFormat ( string format ) : void
format string The format of the message object to log.
리턴 void

WarnFormat() 공개 메소드

Ignores message.
public WarnFormat ( string format, Exception exception ) : void
format string The format of the message object to log.
exception Exception The exception to log.
리턴 void