log4net SDK Reference

Logger.Log Method (Type, Level, Object, Exception)

[This is preliminary documentation and subject to change.]

This generic form is intended to be used by wrappers.

[Visual Basic]
Overridable Overloads Public Sub Log( _
   ByVal callerStackBoundaryDeclaringType As Type, _
   ByVal level As Level, _
   ByVal message As Object, _
   ByVal exception As Exception _
) _
    Implements ILogger.Log
[C#]
public virtual void Log(
   Type callerStackBoundaryDeclaringType,
   Level level,
   object message,
   Exception exception
);

Parameters

callerStackBoundaryDeclaringType
The declaring type of the method that is the stack boundary into the logging system for this call.
level
The level of the message to be logged.
message
The message object to log.
exception
The exception to log, including its stack trace.

Implements

ILogger.Log

Remarks

Generate a logging event for the specified level using the message and exception.

See Also

Logger Class | log4net.Repository.Hierarchy Namespace | Logger.Log Overload List