enum

Planeta::LogLevel

Inherits Enum < Comparable < Value < Object

Logging levels for controlling application verbosity

Constants

DEBUG = 0

Detailed debugging information

INFO = 1

General information about application operation

WARN = 2

Warning messages about potential issues

ERROR = 3

Error messages about failures

FATAL = 4

Fatal errors that cause application termination

Instance methods

debug?

Returns true if this enum value equals DEBUG

Source
error?

Returns true if this enum value equals ERROR

Source
fatal?

Returns true if this enum value equals FATAL

Source
info?

Returns true if this enum value equals INFO

Source
to_log_severity

Converts LogLevel to Crystal's Log::Severity

Source
warn?

Returns true if this enum value equals WARN

Source