AppenderSkeleton Append Method (LoggingEvent)Apache log4net™ SDK Documentation
Subclasses of AppenderSkeleton should implement this method to perform actual logging.

Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

protected abstract void Append(
	LoggingEvent loggingEvent
)
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