Class: Logtail::Logger::Formatter

Inherits:
Object
  • Object
show all
Defined in:
lib/logtail/logger.rb

Constant Summary collapse

SEVERITY_MAP =

Formatters get the formatted level from the logger.

{
  "DEBUG" => :debug,
  "INFO" => :info,
  "WARN" => :warn,
  "ERROR" => :error,
  "FATAL" => :fatal,
  "UNKNOWN" => :unknown
}
EMPTY_ARRAY =
[]