class ActiveSupport::Logger::SimpleFormatter

Simple formatter which only displays the message.

def call(severity, timestamp, progname, msg)

This method is invoked when a log event occurs
def call(severity, timestamp, progname, msg)
  "#{String === msg ? msg : msg.inspect}\n"
end