Class: Celluloid::IncidentReporter::Formatter

Inherits:
Logger::Formatter
  • Object
show all
Defined in:
lib/celluloid/logging/incident_reporter.rb

Overview

get the time from the event

Instance Method Summary collapse

Instance Method Details

#call(severity, _time, progname, msg) ⇒ Object



11
12
13
# File 'lib/celluloid/logging/incident_reporter.rb', line 11

def call(severity, _time, progname, msg)
  super(severity, msg.time, progname, msg.message)
end