method

tag_logger

tag_logger(*tags)
private

No documentation available.

# File activejob/lib/active_job/logging.rb, line 40
      def tag_logger(*tags)
        if logger.respond_to?(:tagged)
          tags.unshift "ActiveJob" unless logger_tagged_by_active_job?
          logger.tagged(*tags){ yield }
        else
          yield
        end
      end