Class: ActiveSupport::Logger::SimpleFormatter

Inherits:
Logger::Formatter
  • Object
show all
Defined in:
activesupport/lib/active_support/logger.rb

Overview

Simple formatter which only displays the message.

Instance Method Summary collapse

Instance Method Details

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

This method is invoked when a log event occurs



52
53
54
# File 'activesupport/lib/active_support/logger.rb', line 52

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