class Lumberjack::Formatter

def call(severity, timestamp, progname, msg)

Parameters:
  • msg (Object) -- The message object to format.
  • progname (String) -- The name of the program logging the message.
  • timestamp (Time) -- The time the message was logged.
  • severity (Integer, String, Symbol) -- The severity of the message.
def call(severity, timestamp, progname, msg)
  "#{format(msg)}#{Lumberjack::LINE_SEPARATOR}"
end