Simple formatter which only displays the message.
This method is invoked when a log event occurs
[Source]
# File lib/inactive_support/clean_logger.rb, line 97 def call(severity, timestamp, progname, msg) "#{String === msg ? msg : msg.inspect}\n" end
[Validate]