aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/buffered_logger.rb
blob: 2e63e672623ec133d04bd4a5b55eab02f6534555 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'active_support/deprecation'
require 'active_support/logger'

module ActiveSupport
  class BufferedLogger < Logger
    def self.inherited(*)
      ::ActiveSupport::Deprecation.warn 'ActiveSupport::BufferedLogger is deprecated! Use ActiveSupport::Logger instead.'
      super
    end
  end
end