Skip to content

Instantly share code, notes, and snippets.

@scotje
Created June 7, 2012 22:59
Show Gist options
  • Save scotje/2892210 to your computer and use it in GitHub Desktop.
Save scotje/2892210 to your computer and use it in GitHub Desktop.
Completely hide asset related logging in Rails 3.2
config.assets.logger = false
if (Rails.application.config.assets.logger != nil) && !Rails.application.config.assets.logger
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
@scotje
Copy link
Author

scotje commented Jun 7, 2012

Add the config line to config/environments/development.rb and add "supress_asset_logging.rb" to config/initializers.

With thanks and credit to https://github.com/guilleiguaran in this comment: rails/rails#4569 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment