C# Class log4net.ILogExtentions

Extension methods for adding additional log shortcuts for Verbose and Trace level logging.
Mostra file Open project: agardiner/hfmcmd

Public Methods

Method Description
Fine ( this log, string message ) : void
Fine ( this log, string message, Exception exception ) : void
FineFormat ( this log, string message ) : void
IsFineEnabled ( this log ) : bool
IsTraceEnabled ( this log ) : bool
Trace ( this log, string message ) : void
Trace ( this log, string message, Exception exception ) : void
TraceFormat ( this log, string message ) : void

Method Details

Fine() public static method

public static Fine ( this log, string message ) : void
log this
message string
return void

Fine() public static method

public static Fine ( this log, string message, Exception exception ) : void
log this
message string
exception System.Exception
return void

FineFormat() public static method

public static FineFormat ( this log, string message ) : void
log this
message string
return void

IsFineEnabled() public static method

public static IsFineEnabled ( this log ) : bool
log this
return bool

IsTraceEnabled() public static method

public static IsTraceEnabled ( this log ) : bool
log this
return bool

Trace() public static method

public static Trace ( this log, string message ) : void
log this
message string
return void

Trace() public static method

public static Trace ( this log, string message, Exception exception ) : void
log this
message string
exception System.Exception
return void

TraceFormat() public static method

public static TraceFormat ( this log, string message ) : void
log this
message string
return void