Method: ActiveSupport::TaggedLogging::Formatter#call

Defined in:
activesupport/lib/active_support/tagged_logging.rb

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

This method is invoked when a log event occurs.



32
33
34
# File 'activesupport/lib/active_support/tagged_logging.rb', line 32

def call(severity, timestamp, progname, msg)
  super(severity, timestamp, progname, tag_stack.format_message(msg))
end