Created
March 12, 2012 22:28
-
-
Save mepatterson/2025099 to your computer and use it in GitHub Desktop.
quiet assets in Rails 3.1 log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # create a file called 'quiet_assets.rb' in the initializers directory, and put this code in-- | |
| Rails.application.assets.logger = Logger.new('/dev/null') | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment