Enum EventLevel
- Namespace
- CapyKit
- Assembly
- CapyKit.dll
Enumeration representing different event level severity values.
public enum EventLevel
- Extension Methods
Fields
[EnumerationDescription("Represents a critical error that requires immediate attention.")] Critical = 0Represents a critical error that requires immediate attention.
[EnumerationDescription("Represents detailed messages that are typically used for debugging purposes.")] Debug = 4Represents detailed messages that are typically used for debugging purposes.
[EnumerationDescription("Represents an error that prevents the normal execution of the application.")] Error = 1Represents an error that prevents the normal execution of the application.
[EnumerationDescription("Represents informational messages that provide useful context to the consumer.")] Information = 3Represents informational messages that provide useful context to the consumer.
[EnumerationDescription("Represents a warning indicating a non-critical issue that should be addressed.")] Warning = 2Represents a warning indicating a non-critical issue that should be addressed.