Clean up Rails::Rack::Logger.

This commit is contained in:
José Valim 2010-01-26 15:37:45 +01:00
parent edb8131535
commit 081dfca33a

@ -9,27 +9,23 @@ def initialize(app)
end
def call(env)
@env = env
before_dispatch
result = @app.call(@env)
after_dispatch
result
before_dispatch(env)
@app.call(env)
ensure
after_dispatch(env)
end
protected
def request
@request ||= ActionDispatch::Request.new(@env)
end
def before_dispatch
def before_dispatch(env)
request = ActionDispatch::Request.new(env)
path = request.request_uri.inspect rescue "unknown"
info "\n\nStarted #{request.method.to_s.upcase} #{path} " <<
"for #{request.remote_ip} at #{Time.now.to_s(:db)}"
end
def after_dispatch
def after_dispatch(env)
Rails::Subscriber.flush_all!
end