mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
95f5f8167f
This reverts commit d00f568a83
.
24 lines
No EOL
480 B
Ruby
24 lines
No EOL
480 B
Ruby
require 'active_support/concern'
|
|
|
|
module LoggerSilence
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
cattr_accessor :silencer
|
|
self.silencer = true
|
|
end
|
|
|
|
# Silences the logger for the duration of the block.
|
|
def silence(temporary_level = Logger::ERROR)
|
|
if silencer
|
|
begin
|
|
old_logger_level, self.level = level, temporary_level
|
|
yield self
|
|
ensure
|
|
self.level = old_logger_level
|
|
end
|
|
else
|
|
yield self
|
|
end
|
|
end
|
|
end |