Flowdock
method

tag_logger

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: Logging
tag_logger(*tags) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.