Log newlines separately to ensure the 'Started GET ...' line has a tag on the same line

This commit is contained in:
Jeremy Kemper 2012-09-25 20:27:26 -07:00
parent 59f83153ca
commit d1cbcd781b

@ -22,7 +22,8 @@ def call(env)
def call_app(env)
request = ActionDispatch::Request.new(env)
path = request.filtered_path
Rails.logger.info "\n\nStarted #{request.request_method} \"#{path}\" for #{request.ip} at #{Time.now.to_default_s}"
Rails.logger.info "\n\n"
Rails.logger.info "Started #{request.request_method} \"#{path}\" for #{request.ip} at #{Time.now.to_default_s}"
@app.call(env)
ensure
ActiveSupport::LogSubscriber.flush_all!