Subclasses of AppenderSkeleton should implement this method
to perform actual logging.
Namespace: log4net.AppenderAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Parameters
- loggingEvent
- Type: log4net.Core LoggingEvent
The event to append.
Remarks
A subclass must implement this method to perform logging of the loggingEvent.
This method will be called by [M:DoAppend(LoggingEvent)] if all the conditions listed for that method are met.
To restrict the logging of events in the appender override the [M:PreAppendCheck()] method.
See Also