diff options
author | Yves Senn <yves.senn@gmail.com> | 2012-12-25 15:50:35 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2012-12-25 15:50:35 +0100 |
commit | 433ebbdc4c82fbf0fba7851d73f9f963c105f16d (patch) | |
tree | 34ef509491b547e1b3e91605e45d3ed02ee0fa94 /activesupport/lib/active_support | |
parent | 501175e3ad6d17913a4f97df21fc0b4f9568dcac (diff) | |
download | rails-433ebbdc4c82fbf0fba7851d73f9f963c105f16d.tar.gz rails-433ebbdc4c82fbf0fba7851d73f9f963c105f16d.tar.bz2 rails-433ebbdc4c82fbf0fba7851d73f9f963c105f16d.zip |
ActiveSupport::BufferedLogger can be subclassed
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/buffered_logger.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb index 0595446189..2e63e67262 100644 --- a/activesupport/lib/active_support/buffered_logger.rb +++ b/activesupport/lib/active_support/buffered_logger.rb @@ -2,6 +2,10 @@ require 'active_support/deprecation' require 'active_support/logger' module ActiveSupport - BufferedLogger = ActiveSupport::Deprecation::DeprecatedConstantProxy.new( - 'BufferedLogger', '::ActiveSupport::Logger') + class BufferedLogger < Logger + def self.inherited(*) + ::ActiveSupport::Deprecation.warn 'ActiveSupport::BufferedLogger is deprecated! Use ActiveSupport::Logger instead.' + super + end + end end |