mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
572c3d5178
from Ruby stdlib.
18 lines
439 B
Ruby
18 lines
439 B
Ruby
require 'logger'
|
|
|
|
module ActiveSupport
|
|
class Logger < ::Logger
|
|
def initialize(*args)
|
|
super
|
|
@formatter = SimpleFormatter.new
|
|
end
|
|
|
|
# Simple formatter which only displays the message.
|
|
class SimpleFormatter < ::Logger::Formatter
|
|
# This method is invoked when a log event occurs
|
|
def call(severity, timestamp, progname, msg)
|
|
"#{String === msg ? msg : msg.inspect}\n"
|
|
end
|
|
end
|
|
end
|
|
end
|