RollingFileAppender Append Method ( LoggingEvent )Apache log4net™ SDK Documentation
Write out an array of logging events.

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

protected override void Append(
	LoggingEvent[] loggingEvents
)

Parameters

loggingEvents
Type:  log4net.Core LoggingEvent 
the events to write to file.
Remarks

Handles append time behavior for RollingFileAppender. This checks if a roll over either by date (checked first) or time (checked second) is need and then appends to the file last.

See Also