Common Logging 2.0 API Reference

AbstractLogger.Debug(Object, Exception) Method

Log a message object with the Debug level including the stack Debug of the Exception passed as a parameter.

[Visual Basic]
Public Overridable Overloads Sub Debug( _
   ByVal message As Object, _
   ByVal exception As Exception _
) _
    Implements ILog.Debug
[C#]
public virtual void Debug(
   object message,
   Exception exception
);

Parameters

message
The message object to log.
exception
The exception to log, including its stack Debug.

Implements

ILog.Debug

See Also

AbstractLogger Class | Common.Logging.Factory Namespace | AbstractLogger.Debug Overload List