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: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
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