Module: Ougai::Logging::Severity

Includes:
Logger::Severity
Included in:
Ougai::Logging
Defined in:
lib/ougai/logging.rb

Constant Summary collapse

TRACE =
-1
SEV_LABEL =
%w(TRACE DEBUG INFO WARN ERROR FATAL ANY)

Instance Method Summary collapse

Instance Method Details

#to_label(severity) ⇒ Object



15
16
17
# File 'lib/ougai/logging.rb', line 15

def to_label(severity)
  SEV_LABEL[severity + 1] || 'ANY'
end