LogLevel
The severity level of a log entry. Log levels are ordered from most to least severe: CRITICAL > ERROR > WARNING > INFO > DEBUG
enum LogLevel {
CRITICAL
ERROR
WARNING
INFO
DEBUG
}
Values
LogLevel.CRITICAL
Critical errors that require immediate attention
LogLevel.ERROR
Error conditions that indicate a failure
LogLevel.WARNING
Warning conditions that may require attention
LogLevel.INFO
Informational messages about normal operations
LogLevel.DEBUG
Detailed diagnostic information for debugging