Skip to content

Commit

Permalink
Revert to logDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvanoosten committed Dec 22, 2023
1 parent ef19ec2 commit 2714a23
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private[consumer] final class Runloop private (
onAssigned = (assignedTps, _) =>
for {
rebalanceEvent <- lastRebalanceEvent.get
_ <- ZIO.logInfo {
_ <- ZIO.logDebug {
val sameRebalance = if (rebalanceEvent.wasInvoked) " in same rebalance" else ""
s"${assignedTps.size} partitions are assigned$sameRebalance"
}
Expand All @@ -217,7 +217,7 @@ private[consumer] final class Runloop private (
onRevoked = (revokedTps, _) =>
for {
rebalanceEvent <- lastRebalanceEvent.get
_ <- ZIO.logInfo {
_ <- ZIO.logDebug {
val sameRebalance = if (rebalanceEvent.wasInvoked) " in same rebalance" else ""
s"${revokedTps.size} partitions are revoked$sameRebalance"
}
Expand Down

0 comments on commit 2714a23

Please sign in to comment.