Enum LogLevel
- Namespace
- YndigoBlue.Velocity.Enums
- Assembly
- YndigoBlue.Velocity.dll
Specifies the severity level for logging messages.
public enum LogLevel
Fields
Debug = 1Debug-level messages for detailed diagnostic information during development.
Info = 2Informational messages about normal application operation.
Warn = 3Warning messages indicating potential issues that don't prevent operation.
Error = 4Error messages indicating failures that affect specific operations.
Fatal = 5Fatal error messages indicating critical failures that may terminate the application.
Remarks
Log levels allow filtering and categorizing log output based on severity. Each level includes all messages at that level and higher severity levels.