Module: Logger::Severity

Included in:
Logger
Defined in:
lib/logger.rb

Overview

Logging severity.

Constant Summary collapse

DEBUG =

Low-level information, mostly for developers

0
INFO =

generic, useful information about system operation

1
WARN =

a warning

2
ERROR =

a handleable error condition

3
FATAL =

an unhandleable error that results in a program crash

4
UNKNOWN =

an unknown message that should always be logged

5