Skip to content

Commit

Permalink
Fix syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
armstrjare committed Sep 29, 2024
1 parent 24ff618 commit e5e9a38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/tagged_logging.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ def tagged(*tags, &block)
end.call
else
# `tagged(...) returns a new logger with the tags pushed
self.class.new *broadcasts.map { |logger|
self.class.new(*broadcasts.map { |logger|
logger.respond_to?(:tagged) ? logger.tagged(*tags) : logger
}
})
end
end
end
Expand Down

0 comments on commit e5e9a38

Please sign in to comment.