class ActiveSupport::Logger::SimpleFormatter
Simple formatter which only displays the message.
Public Instance Methods
This method is invoked when a log event occurs
# File activesupport/lib/active_support/logger.rb, line 66 def call(severity, timestamp, progname, msg) "#{String === msg ? msg : msg.inspect}\n" end
© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.