Class: ActionCable::Connection::TaggedLoggerProxy
- Inherits:
-
Object
- Object
- ActionCable::Connection::TaggedLoggerProxy
- Defined in:
- lib/action_cable/connection/tagged_logger_proxy.rb
Overview
Allows the use of per-connection tags against the server logger. This wouldn’t work using the traditional ActiveSupport::TaggedLogging 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.
Instance Attribute Summary collapse
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
Instance Method Summary collapse
- #add_tags(*tags) ⇒ Object
-
#initialize(logger, tags:) ⇒ TaggedLoggerProxy
constructor
A new instance of TaggedLoggerProxy.
- #tag(logger, &block) ⇒ Object
Constructor Details
#initialize(logger, tags:) ⇒ TaggedLoggerProxy
Returns a new instance of TaggedLoggerProxy.
11 12 13 14 |
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 11 def initialize(logger, tags:) @logger = logger @tags = .flatten end |
Instance Attribute Details
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
9 10 11 |
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 9 def @tags end |
Instance Method Details
#add_tags(*tags) ⇒ Object
16 17 18 19 |
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 16 def (*) @tags += .flatten @tags = @tags.uniq end |
#tag(logger, &block) ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 21 def tag(logger, &block) if logger.respond_to?(:tagged) = - logger.formatter. logger.tagged(*, &block) else yield end end |