enum

Logger::Severity

Inherits Enum / Comparable / Value / Object

A logger severity level.

Constants

DEBUG = 0

Low-level information for developers

INFO = 1

Generic (useful) information about system operation

WARN = 2

A warning

ERROR = 3

A handleable error condition

FATAL = 4

An unhandleable error that results in a program crash

UNKNOWN = 5

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
unknown?

Returns true if this enum value equals UNKNOWN

Source
warn?

Returns true if this enum value equals WARN

Source