aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/logger.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2012-12-21 19:28:24 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2012-12-21 19:28:24 +0100
commitd00f568a83a5159ed93618b1081bd17858536d1c (patch)
tree67983dd6038148f9da162f2aa8ed9926b336874d /activesupport/lib/active_support/logger.rb
parentf914454f3af46a011d2ea627925cadea73f62e92 (diff)
downloadrails-d00f568a83a5159ed93618b1081bd17858536d1c.tar.gz
rails-d00f568a83a5159ed93618b1081bd17858536d1c.tar.bz2
rails-d00f568a83a5159ed93618b1081bd17858536d1c.zip
Make sure that ActiveSupport::Logger includes the Logger extensions from core_ext/logger
Diffstat (limited to 'activesupport/lib/active_support/logger.rb')
-rw-r--r--activesupport/lib/active_support/logger.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/logger.rb b/activesupport/lib/active_support/logger.rb
index 4a55bbb350..023e22e642 100644
--- a/activesupport/lib/active_support/logger.rb
+++ b/activesupport/lib/active_support/logger.rb
@@ -1,11 +1,9 @@
require 'active_support/core_ext/class/attribute_accessors'
-require 'active_support/logger_silence'
require 'logger'
+require 'active_support/core_ext/logger'
module ActiveSupport
class Logger < ::Logger
- include LoggerSilence
-
# Broadcasts logs to multiple loggers.
def self.broadcast(logger) # :nodoc:
Module.new do