Gets or sets a value that indicates whether the appender is lossy.
Namespace: log4net.AppenderAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Property Value
Type: Booleantrue if the appender is lossy, otherwise false. The default is false.
Remarks
This appender uses a buffer to store logging events before delivering them. A triggering event causes the whole buffer to be send to the remote sink. If the buffer overruns before a triggering event then logging events could be lost. Set Lossy to false to prevent logging events from being lost.
If Lossy is set to true then an Evaluator must be specified.
See Also