is possible to hack logger in Rails3 to ignore requests for assets?

It is maddness to find something in log, when it is full of

Started GET "/assets/tiscali.png" for 127.0.0.1 at 2011-09-09 19:59:45 +0200
Served asset /tiscali.png - 304 Not Modified (0ms)

Thanks!

link|improve this question

56% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Apparently the issue is still open as of 02 Nov 2011.

A workaround solution is available in a similar question: How to disable logging of asset pipeline (sprockets) messages in Rails 3.1?

link|improve this answer
feedback

I think this could help https://github.com/evrone/quiet_assets

link|improve this answer
feedback

How about an invert selection?

tail -f log/development.log | grep -v asset

This basically outputs everything except for the lines that contain the word "asset".

link|improve this answer
It is better than nothing, but it will replace lot of asset requests with empty space, so scrolling trought log is still pain in ass :) – Schovi Sep 10 '11 at 8:01
If scrolling is the problem you can strip all the blank lines. tail -f log/development.log | grep -vE "(^$|asset)" – vise Sep 10 '11 at 9:26
As a side note, I'm pretty sure someone with better *nix skills can come up with a better expression, but the point is that you can use tail -f to match anything you want. – vise Sep 10 '11 at 9:31
feedback

Rails 3.2:

create a initializer with the content:

Rails::Rack::Logger.class_eval do 
  def call_with_quiet_assets(env)
    previous_level = Rails.logger.level
    Rails.logger.level = Logger::ERROR if env['PATH_INFO'].index("/assets/") == 0 
    call_without_quiet_assets(env).tap do
      Rails.logger.level = previous_level
    end 
  end 
  alias_method_chain :call, :quiet_assets 
end 

From here: https://github.com/rails/rails/issues/2639

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.