Skip to content

Instantly share code, notes, and snippets.

@rfunduk
Created June 8, 2012 13:29
Show Gist options
  • Select an option

  • Save rfunduk/2895618 to your computer and use it in GitHub Desktop.

Select an option

Save rfunduk/2895618 to your computer and use it in GitHub Desktop.
Rails 3.2.x log usefulness *= 1_000_000_000
# SHUT UP with the "GET /assets/whatever..." in the log. Do not want.
if Rails.env.development?
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
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment