| 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
Public Enumeration EventLogTargetOverflowAction
Dim instance As EventLogTargetOverflowAction
type EventLogTargetOverflowAction
Members
| Member name | Value | Description |
---|
| Truncate | 0 |
Truncate the message before writing to the Event Log.
|
| Split | 1 |
Split the message and write multiple entries to the Event Log.
|
| Discard | 2 |
Discard of the message. It will not be written to the Event Log.
|
See Also