aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/logger_silence.rb
blob: 3eb8098c77c645af893d783187cfab737902e11f (plain) (tree)
1
2
3
4
5
6
7
                                
                                                            
                    


                               
 








                                                      

                                                    
 

                  
                                          




                
   
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