Method: ActiveSupport::Logger::SimpleFormatter#call

Defined in:
lib/active_support/logger.rb

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

This method is invoked when a log event occurs



88
89
90
# File 'lib/active_support/logger.rb', line 88

def call(severity, timestamp, progname, msg)
  "#{String === msg ? msg : msg.inspect}\n"
end