LoggerLog Method (Type, Level, Object, Exception)Apache log4net™ SDK Documentation
This generic form is intended to be used by wrappers.

Namespace: log4net.Repository.Hierarchy
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

public virtual void Log(
	Type callerStackBoundaryDeclaringType,
	Level level,
	Object message,
	Exception exception
)

Parameters

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

Implements

ILoggerLog(Type, Level, Object, Exception)
Remarks

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

This method must not throw any exception to the caller.

See Also

Reference