tag(logger)
public

No documentation available.

# File actioncable/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