Common Logging 2.0 API Reference

ILog.Info(Object, Exception) Method

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

[Visual Basic]
Public Sub Info( _
   ByVal message As Object, _
   ByVal exception As Exception _
)
[C#]
void Info(
   object message,
   Exception exception
);

Parameters

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

See Also

ILog Interface | Common.Logging Namespace | ILog.Info Overload List