Created
August 4, 2016 13:12
-
-
Save davidleandro/f843920fd98b27835afa7aada4fbf4e7 to your computer and use it in GitHub Desktop.
How to disable logging of assets
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
| # config/initializers/quiet_assets.rb | |
| if Rails.env.development? | |
| Rails.application.assets.try(: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'] =~ %r{^/assets/} | |
| call_without_quiet_assets(env) | |
| ensure | |
| Rails.logger.level = previous_level | |
| 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