1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/logger_silence.rb
Edouard CHIN 874cff399c LoggerSilence doesn't require concurrent:
- LoggerThreadSafeLevel does nowaday since 2518bda97c
2018-09-28 02:09:57 -04:00

28 lines
607 B
Ruby

# frozen_string_literal: true
require "active_support/concern"
require "active_support/core_ext/module/attribute_accessors"
module LoggerSilence
extend ActiveSupport::Concern
included do
cattr_accessor :silencer, default: 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