From ed2fea908a9f8540ac2ea949e3e258ab88769cb1 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 14 Sep 2012 18:52:15 +0400 Subject: Deprecate ActiveSupport::Benchmarkable#silence. Due to its lack of thread safety, we're deprecating this, and it will be removed in Rails 4.1. Fixes #4060. --- activesupport/lib/active_support/benchmarkable.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/benchmarkable.rb b/activesupport/lib/active_support/benchmarkable.rb index f149a7f0ed..1b391697e6 100644 --- a/activesupport/lib/active_support/benchmarkable.rb +++ b/activesupport/lib/active_support/benchmarkable.rb @@ -46,6 +46,7 @@ module ActiveSupport # Silence the logger during the execution of the block. # def silence + ActiveSupport::Deprecation.warn "ActiveSupport::Benchmarkable#silence is deprecated. It will be removed from Rails 4.1." old_logger_level, logger.level = logger.level, ::Logger::ERROR if logger yield ensure -- cgit v1.2.3