class Thin::Logging::SimpleFormatter

Simple formatter which only displays the message. Taken from ActiveSupport

Public Instance Methods

call(severity, timestamp, progname, msg) click to toggle source
# File lib/thin/logging.rb, line 15
def call(severity, timestamp, progname, msg)
  "#{String === msg ? msg : msg.inspect}\n"
end