Enum LogLevel

Enum Documentation

enum yasmin::LogLevel

Enum representing different log levels for controlling log verbosity.

This enum defines the severity levels of logs that can be used to control which log messages should be displayed. The levels are ordered from most severe to least severe. Only logs at or above the current log level will be shown.

Values:

enumerator ERROR

Log level for error messages. Only critical errors should be logged.

enumerator WARN

Log level for warning messages. Indicate potential issues that are not critical.

enumerator INFO

Log level for informational messages. General runtime information about the system’s state.

enumerator DEBUG

Log level for debug messages. Used for detailed information, mainly for developers.