ILogExtensionsDebugExt Method (ILog, Object, Exception)Apache log4net™ SDK Documentation
Log a message object with the Debug level including the stack trace of the Exception passed as a parameter.

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

public static void DebugExt(
	this ILog logger,
	Object message,
	Exception exception
)

Parameters

logger
Type: log4netILog
The logger on which the message is logged.
message
Type: SystemObject
The message object to log.
exception
Type: SystemException
The exception to log, including its stack trace.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILog. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

See the DebugExt(ILog, Object) form for more detailed information.

See Also

Reference