Simple formatter which only displays the message.

Methods

Instance Public methods

call(severity, timestamp, progname, msg)

This method is invoked when a log event occurs

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