rails--rails/railties/lib/rails/rack/logger.rb

36 lines
780 B
Ruby
Raw Normal View History

require 'rails/log_subscriber'
require 'active_support/core_ext/time/conversions'
2010-01-21 12:05:30 +00:00
module Rails
module Rack
# Log the request started and flush all loggers after it.
class Logger < Rails::LogSubscriber
2010-01-21 12:05:30 +00:00
def initialize(app)
@app = app
end
def call(env)
2010-01-26 14:37:45 +00:00
before_dispatch(env)
@app.call(env)
ensure
after_dispatch(env)
2010-01-21 12:05:30 +00:00
end
protected
2010-01-26 14:37:45 +00:00
def before_dispatch(env)
request = ActionDispatch::Request.new(env)
path = request.fullpath
2010-01-21 12:05:30 +00:00
info "\n\nStarted #{env["REQUEST_METHOD"]} \"#{path}\" " \
"for #{request.ip} at #{Time.now.to_default_s}"
2010-01-21 12:05:30 +00:00
end
2010-01-26 14:37:45 +00:00
def after_dispatch(env)
Rails::LogSubscriber.flush_all!
2010-01-21 12:05:30 +00:00
end
end
end
end