BufferingAppenderSkeletonAppend Method (LoggingEvent)Apache log4net™ SDK Documentation
This method is called by the DoAppend(LoggingEvent) method.

Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

protected override void Append(
	LoggingEvent loggingEvent
)

Parameters

loggingEvent
Type: log4net.CoreLoggingEvent
the event to log
Remarks

Stores the loggingEvent in the cyclic buffer.

The buffer will be sent (i.e. passed to the SendBuffer(LoggingEvent) method) if one of the following conditions is met:

  • The cyclic buffer is full and this appender is marked as not lossy (see Lossy)
  • An Evaluator is set and it is triggered for the loggingEvent specified.

Before the event is stored in the buffer it is fixed (see FixVolatileData(FixFlags)) to ensure that any data referenced by the event will be valid when the buffer is processed.

See Also

Reference