diff options
author | José Valim <jose.valim@gmail.com> | 2011-03-11 13:29:39 -0800 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-03-11 13:29:39 -0800 |
commit | 53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0 (patch) | |
tree | 0ed79c437f522e29ef71e471a4b87482514ddb5b | |
parent | 94031ef422357e5802c965a9e8365e5494e7cc2f (diff) | |
download | rails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.tar.gz rails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.tar.bz2 rails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.zip |
Add missing require 'thread' to BufferedLogger.
-rw-r--r-- | activesupport/lib/active_support/buffered_logger.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb index b861a6f62a..e41731f3e7 100644 --- a/activesupport/lib/active_support/buffered_logger.rb +++ b/activesupport/lib/active_support/buffered_logger.rb @@ -1,3 +1,4 @@ +require 'thread' require 'active_support/core_ext/class/attribute_accessors' module ActiveSupport |