class PushmiPullyu::Logging::SimpleFormatter

Simple formatter which only displays the message. Taken from ActiveSupport

Public Instance Methods

call(_severity, _timestamp, _program_name, msg) click to toggle source

This method is invoked when a log event occurs

# File lib/pushmi_pullyu/logging.rb, line 10
def call(_severity, _timestamp, _program_name, msg)
  "#{msg.is_a?(String) ? msg : msg.inspect}\n"
end