EventLogMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines the behavior for the event log service handles an event log when the log reaches its maximum allowed size (when the event log is full).
public enum class EventLogMode
public enum EventLogMode
type EventLogMode =
Public Enum EventLogMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Circular | 0 | New events continue to be stored when the log file is full. Each new incoming event replaces the oldest event in the log. |
AutoBackup | 1 | Archive the log when full, do not overwrite events. The log is automatically archived when necessary. No events are overwritten. |
Retain | 2 | Do not overwrite events. Clear the log manually rather than automatically. |