mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d66e7835be
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
28 lines
607 B
Ruby
28 lines
607 B
Ruby
require "active_support/concern"
|
|
require "active_support/core_ext/module/attribute_accessors"
|
|
require "concurrent"
|
|
|
|
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_local_level = local_level
|
|
self.local_level = temporary_level
|
|
|
|
yield self
|
|
ensure
|
|
self.local_level = old_local_level
|
|
end
|
|
else
|
|
yield self
|
|
end
|
|
end
|
|
end
|