Common Logging 2.0 API Reference

AbstractLogger.WriteInternal Method

Actually sends the message to the underlying log system.

[Visual Basic]
Protected MustOverride Sub WriteInternal( _
   ByVal level As LogLevel, _
   ByVal message As Object, _
   ByVal exception As Exception _
)
[C#]
protected abstract void WriteInternal(
   LogLevel level,
   object message,
   Exception exception
);

Parameters

level
the level of this log event.
message
the message to log
exception
the exception to log (may be null)

See Also

AbstractLogger Class | Common.Logging.Factory Namespace