C# Class Common.Logging.Simple.NoOpLogger

Inheritance: ILog
Mostrar archivo Open project: net-commons/common-logging

Public Methods

Method Description
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.

Method Details

Debug() public method

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
return void

Debug() public method

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.
return void

Debug() public method

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
return void

Debug() public method

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.
return void

Debug() public method

Ignores message.
public Debug ( object message ) : void
message object
return void

Debug() public method

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

DebugFormat() public method

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.
return void

DebugFormat() public method

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.
return void

DebugFormat() public method

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

DebugFormat() public method

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.
return void

Error() public method

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
return void

Error() public method

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.
return void

Error() public method

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
return void

Error() public method

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.
return void

Error() public method

Ignores message.
public Error ( object message ) : void
message object
return void

Error() public method

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

ErrorFormat() public method

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.
return void

ErrorFormat() public method

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.
return void

ErrorFormat() public method

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

ErrorFormat() public method

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.
return void

Fatal() public method

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
return void

Fatal() public method

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.
return void

Fatal() public method

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
return void

Fatal() public method

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.
return void

Fatal() public method

Ignores message.
public Fatal ( object message ) : void
message object
return void

Fatal() public method

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

FatalFormat() public method

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.
return void

FatalFormat() public method

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.
return void

FatalFormat() public method

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

FatalFormat() public method

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.
return void

Info() public method

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
return void

Info() public method

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.
return void

Info() public method

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
return void

Info() public method

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.
return void

Info() public method

Ignores message.
public Info ( object message ) : void
message object
return void

Info() public method

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

InfoFormat() public method

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.
return void

InfoFormat() public method

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.
return void

InfoFormat() public method

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

InfoFormat() public method

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.
return void

Trace() public method

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
return void

Trace() public method

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.
return void

Trace() public method

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
return void

Trace() public method

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.
return void

Trace() public method

Ignores message.
public Trace ( object message ) : void
message object
return void

Trace() public method

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

TraceFormat() public method

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.
return void

TraceFormat() public method

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.
return void

TraceFormat() public method

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

TraceFormat() public method

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.
return void

Warn() public method

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
return void

Warn() public method

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.
return void

Warn() public method

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
return void

Warn() public method

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.
return void

Warn() public method

Ignores message.
public Warn ( object message ) : void
message object
return void

Warn() public method

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

WarnFormat() public method

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.
return void

WarnFormat() public method

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.
return void

WarnFormat() public method

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

WarnFormat() public method

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.
return void