Skip to content

Instantly share code, notes, and snippets.

@yuroyoro
Created October 17, 2012 11:20
Show Gist options
  • Save yuroyoro/3905023 to your computer and use it in GitHub Desktop.
Save yuroyoro/3905023 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