Methods
#
I
N
Class Public methods
_deprecation_warning()
# File activesupport/lib/active_support/buffered_logger.rb, line 17
def self._deprecation_warning
  ::ActiveSupport::Deprecation.warn 'ActiveSupport::BufferedLogger is deprecated! Use ActiveSupport::Logger instead.'
end
inherited(*)
# File activesupport/lib/active_support/buffered_logger.rb, line 12
def self.inherited(*)
  _deprecation_warning
  super
end
new(*args)
# File activesupport/lib/active_support/buffered_logger.rb, line 7
def initialize(*args)
  self.class._deprecation_warning
  super
end