method

tagged

rails latest stable - Class: ActiveSupport::TaggedLogging::Formatter
tagged(*tags)
public

No documentation available.

# File activesupport/lib/active_support/tagged_logging.rb, line 37
      def tagged(*tags)
        pushed_count = tag_stack.push_tags(tags).size
        yield self
      ensure
        pop_tags(pushed_count)
      end