Skip to content

Instantly share code, notes, and snippets.

@scottraio
Created December 12, 2011 23:11
Show Gist options
  • Save scottraio/1469581 to your computer and use it in GitHub Desktop.
Save scottraio/1469581 to your computer and use it in GitHub Desktop.
Quiet down Rails 3.1 asset pipeline logging in development
Rails.application.assets.logger = Logger.new('/dev/null')
Rails::Rack::Logger.class_eval do
def before_dispatch_with_quiet_assets(env)
before_dispatch_without_quiet_assets(env) unless env['PATH_INFO'].index("/assets/") == 0
end
alias_method_chain :before_dispatch, :quiet_assets
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment