Click or drag to resize

EventLogTargetOverflowAction Enumeration

Action that should be taken if the message is greater than the max message size allowed by the Event Log.

Namespace:  NLog.Targets
Assembly:  NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax
public enum EventLogTargetOverflowAction
Members
  Member nameValueDescription
Truncate0 Truncate the message before writing to the Event Log.
Split1 Split the message and write multiple entries to the Event Log.
Discard2 Discard of the message. It will not be written to the Event Log.
See Also