instance method
_tagged
Ruby on Rails edge
Since edge Private — implementation detail, not part of the public APISignature
_tagged(loggers, index, tags, &block)
No documentation comment.
Parameters
-
loggersreq -
indexreq -
tagsreq -
blockblock
Source
# File activesupport/lib/active_support/broadcast_logger.rb, line 289
def _tagged(loggers, index, tags, &block)
if index >= loggers.size
yield self
else
loggers[index].tagged(*tags) do
_tagged(loggers, index + 1, tags, &block)
end
end
end
Defined in activesupport/lib/active_support/broadcast_logger.rb line 289
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::BroadcastLogger