Class: ActionCable::Connection::TaggedLoggerProxy

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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 = tags.flatten
end

Instance Attribute Details

#tagsObject (readonly)

Returns the value of attribute tags.



9
10
11
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 9

def tags
  @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 add_tags(*tags)
  @tags += tags.flatten
  @tags = @tags.uniq
end

#tag(logger) ⇒ Object



21
22
23
24
25
26
27
28
# File 'lib/action_cable/connection/tagged_logger_proxy.rb', line 21

def tag(logger)
  if logger.respond_to?(:tagged)
    current_tags = tags - logger.formatter.current_tags
    logger.tagged(*current_tags) { yield }
  else
    yield
  end
end