Skip to content

Instantly share code, notes, and snippets.

@Epictetus
Forked from yuroyoro/environment.rb
Created October 17, 2012 15:24
Show Gist options
  • Save Epictetus/3906128 to your computer and use it in GitHub Desktop.
Save Epictetus/3906128 to your computer and use it in GitHub Desktop.
Railsで"Rendered share/_header.html.haml (0.8ms)"のようなログを黙らせる
# Supress ActionView events log
['render_template', 'render_partial', 'render_collection'].each{|name|
ActiveSupport::Notifications.instance_eval{
notifier.listeners_for("#{name}.action_view").each(&method(:unsubscribe))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment