diff options
author | Edouard CHIN <edouard.chin@shopify.com> | 2018-09-28 02:09:57 -0400 |
---|---|---|
committer | Edouard CHIN <edouard.chin@shopify.com> | 2018-09-28 02:09:57 -0400 |
commit | 874cff399c8f55423cc126d80bb2db5445d416b9 (patch) | |
tree | c2ea469292b2122eb7f74e9ca103c0601ddb8324 /activesupport/lib/active_support/logger_thread_safe_level.rb | |
parent | 71030c93116e39b3c4838a50bfe57d9715439926 (diff) | |
download | rails-874cff399c8f55423cc126d80bb2db5445d416b9.tar.gz rails-874cff399c8f55423cc126d80bb2db5445d416b9.tar.bz2 rails-874cff399c8f55423cc126d80bb2db5445d416b9.zip |
LoggerSilence doesn't require concurrent:
- LoggerThreadSafeLevel does nowaday since 2518bda97cbbcb33dc9a92e70d5b01c09e64d12d
Diffstat (limited to 'activesupport/lib/active_support/logger_thread_safe_level.rb')
-rw-r--r-- | activesupport/lib/active_support/logger_thread_safe_level.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/logger_thread_safe_level.rb b/activesupport/lib/active_support/logger_thread_safe_level.rb index ba32813d3d..22ab4cc28c 100644 --- a/activesupport/lib/active_support/logger_thread_safe_level.rb +++ b/activesupport/lib/active_support/logger_thread_safe_level.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require "active_support/concern" +require "concurrent" module ActiveSupport module LoggerThreadSafeLevel # :nodoc: |