aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-07-01 20:49:15 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-07-01 20:49:17 -0300
commit9d0a65320f3b505425ced2db22422772e15a5d2e (patch)
tree0dcbba3239d1cbc05bab66b04ac79443e68383d4
parentd094aaad19ab0d79d0e74747ad1a7141f914b431 (diff)
downloadrails-9d0a65320f3b505425ced2db22422772e15a5d2e.tar.gz
rails-9d0a65320f3b505425ced2db22422772e15a5d2e.tar.bz2
rails-9d0a65320f3b505425ced2db22422772e15a5d2e.zip
Add missing require
Commit cfa35c55bb38b27af305ad21408e181bc3cd739e removed the buffered_logger from AS, which required the logger file. Now we need to add the proper require here.
-rw-r--r--activesupport/lib/active_support/log_subscriber/test_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/log_subscriber/test_helper.rb b/activesupport/lib/active_support/log_subscriber/test_helper.rb
index e50784ea0e..75f353f62c 100644
--- a/activesupport/lib/active_support/log_subscriber/test_helper.rb
+++ b/activesupport/lib/active_support/log_subscriber/test_helper.rb
@@ -1,4 +1,5 @@
require 'active_support/log_subscriber'
+require 'active_support/logger'
require 'active_support/notifications'
module ActiveSupport