class ActiveSupport::BufferedLogger

Public Class Methods

_deprecation_warning() click to toggle source
# File 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(*) click to toggle source
Calls superclass method
# File lib/active_support/buffered_logger.rb, line 12
def self.inherited(*)
  _deprecation_warning
  super
end
new(*args) click to toggle source
Calls superclass method
# File lib/active_support/buffered_logger.rb, line 7
def initialize(*args)
  self.class._deprecation_warning
  super
end