Is it possible to get the full URLs in the logs of a Rails application? Currently I'm getting something like:

Started GET "/" for 127.0.0.1 at 2011-08-27 13:13:10 +0200

but I need to get:

Started GET "http://localhost:3000/" for 127.0.0.1 at 2011-08-27 13:13:10 +0200

because this is an app where the domains are important.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The line is coming from the middleware Rails::Rack::Logger, which is in railties. At the simplest, you could just override the method doing the logging, e.g., in an initializer:

class Rails::Rack::Logger < ActiveSupport::LogSubscriber
  protected

  def before_dispatch(env)
    request = ActionDispatch::Request.new(env)
    info "\n\nStarted #{request.request_method} \"#{request.url}\" for #{request.ip} at #{Time.now.to_default_s}"
  end
end

If you'd rather not override the logger, you could always add your own, which you've already created, then delete Rails::Rack::Logger from the stack via:

config.middleware.insert_before(Rails::Rack::Logger, YourLogger)
config.middleware.delete(Rails::Rack::Logger)

If you go this route you might check out the rack logger for its usage of ActionDispatch::Request, and be sure to do the other job it does of flushing the log subscriber cache after dispatch, via ActiveSupport::LogSubscriber.flush_all!

link|improve this answer
Very informative, thanks a lot. – J. Pablo Fernández Aug 27 '11 at 17:26
I applied this snippet to my rails project, and it works well in my development env, but not in production env. Still not know why – Frankel Mar 28 at 1:11
Just guessing but is your production log level above info? Its worth noting also that this answer is no longer current. The rack logger has changed since. – numbers1311407 Mar 29 at 3:58
feedback

I don't think you can do this without changing Rails itself, which isn't nice, but you can add your own log call:

class ApplicationController < ActionController::Base

  before_filter :log_request

  protected

  def log_request
    logger.info("Started #{request.method} #{request.url}")
  end    

end
link|improve this answer
The only drawbacks I see to this solution is that the custom log line is not next to the main one and it won't log for images, javascript, etc. I'm not sure if the latter would be a problem later on in the project which it's more complex. – J. Pablo Fernández Aug 27 '11 at 16:05
feedback

A workaround I'm using for now was creating this class:

class HostnameLogger
  def initialize(app)
    @app = app
  end

  def call(env)
    uri = env["REQUEST_URI"]
    if uri.blank? # While testing a Rails app, there's no env["REQUEST_UIR"] defined.
      uri = "http://#{env["HTTP_HOST"]}#{env["PATH_INFO"]}"
    end
    Rails.logger.info "Started #{env["REQUEST_METHOD"]} \"#{uri}\" for #{env["REMOTE_ADDR"]} at #{Time.now}"
    @app.call(env)
  end
end

and then adding it as Rack middleware (in application.rb):

config.middleware.use "HostnameLogger"

so I get:

Started GET "/users/login" for 127.0.0.1 at 2011-08-27 15:33:40 +0200

Started GET "http://localhost:3000/users/login" for 127.0.0.1 at 2011-08-27 15:33:40 +0200

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.