Common Logging 2.0 API Reference

AbstractLogger.Error(IFormatProvider, Action) Method

Log a message with the Error level using a callback to obtain the message

[Visual Basic]
Public Overridable Overloads Sub Error( _
   ByVal formatProvider As IFormatProvider, _
   ByVal formatMessageCallback As Action(Of FormatMessageHandler) _
) _
    Implements ILog.Error
[C#]
public virtual void Error(
   IFormatProvider formatProvider,
   Action<FormatMessageHandlerformatMessageCallback
);

Parameters

formatProvider
An IFormatProvider that supplies culture-specific formatting information.
formatMessageCallback
A callback used by the logger to obtain the message if log level is matched

Implements

ILog.Error

Remarks

Using this method avoids the cost of creating a message and evaluating message arguments that probably won't be logged due to loglevel settings.

See Also

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