Common Logging 2.0 API Reference

AbstractLogger.Trace(Object, Exception) Method

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

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

Parameters

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

Implements

ILog.Trace

See Also

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