Skip to Content Skip to Search
v7.1.0
class ActiveSupport::Logger::SimpleFormatter < Logger::Formatter

ActiveSupport::Logger::SimpleFormatter

Simple formatter which only displays the message.

Methods
C

Public instance methods

call(severity, timestamp, progname, msg)

Permalink

This method is invoked when a log event occurs

Source code GitHub
# File activesupport/lib/active_support/logger.rb, line 37
def call(severity, timestamp, progname, msg)
  "#{String === msg ? msg : msg.inspect}\n"
end
Definition files