Every time I load a page, webrick pollutes its log with lots of assets rendering lines. I want it to render assets, but I don't want it to be logged, because it makes it really difficult to look into what really matters. How do I force it to stop doing that?

link|improve this question

62% accept rate
1  
Look at stackoverflow.com/questions/6312448/… seems like the same issue – chischaschos Sep 8 '11 at 23:37
I wouldn't use webrick for a production application, anyways. Use thin , mongrel, or passenger. tenmiles.com/blog/2010/08/… – WattsInABox Nov 10 '11 at 18:02
feedback

2 Answers

There is an open ticket for this https://github.com/rails/rails/issues/2639, when it is closed and you have the lastest and greatest, in config/environments/development.rb add:

config.assets.logger = nil

Until the above issues is resolve, then this will work:

Rails.application.assets.logger = Logger.new('/dev/null')
Rails::Rack::Logger.class_eval do
  def before_dispatch_with_quiet_assets(env)
    before_dispatch_without_quiet_assets(env) unless env['PATH_INFO'].index("/assets/") == 0
  end
  alias_method_chain :before_dispatch, :quiet_assets
end

Reference: How to disable logging of asset pipeline (sprockets) messages in Rails 3.1?

link|improve this answer
feedback

Add gem 'quiet_assets', :group => :developmentto your Gemfile. See https://github.com/evrone/quiet_assets .

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.