diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2015-12-17 17:14:05 -0200 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2015-12-17 17:14:05 -0200 |
commit | 01d7189ab9db4ef2de720fb5b940acc093c434ca (patch) | |
tree | 4cc9b95edab14c1d5e156189cacb00b47550394d | |
parent | 7f86ed8b36b534cf94fe2ff47ae71956b57893ac (diff) | |
parent | c9b750f951612c2075bc24e5ff9a630ce01206bf (diff) | |
download | rails-01d7189ab9db4ef2de720fb5b940acc093c434ca.tar.gz rails-01d7189ab9db4ef2de720fb5b940acc093c434ca.tar.bz2 rails-01d7189ab9db4ef2de720fb5b940acc093c434ca.zip |
Merge pull request #22643 from Gaurav2728/gaurav-correct_doc_in_action_cable
traditional make sense with `<tt>ActiveSupport::TaggedLogging</tt>`
-rw-r--r-- | actioncable/lib/action_cable/connection/tagged_logger_proxy.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb b/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb index e5319087fb..41afa9680a 100644 --- a/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb +++ b/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb @@ -1,7 +1,7 @@ module ActionCable module Connection - # Allows the use of per-connection tags against the server logger. This wouldn't work using the tradional - # ActiveSupport::TaggedLogging-enhanced Rails.logger, as that logger will reset the tags between requests. + # Allows the use of per-connection tags against the server logger. This wouldn't work using the traditional + # <tt>ActiveSupport::TaggedLogging</tt> enhanced Rails.logger, as that logger will reset the tags between requests. # The connection is long-lived, so it needs its own set of tags for its independent duration. class TaggedLoggerProxy attr_reader :tags |