lianetm commented on code in PR #18866:
URL: https://github.com/apache/kafka/pull/18866#discussion_r1951649499


##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/CoordinatorRequestManager.java:
##########
@@ -175,7 +175,7 @@ public void markCoordinatorUnknown(final String cause, 
final long currentTimeMs)
             long durationOfOngoingDisconnectMs = Math.max(0, currentTimeMs - 
timeMarkedUnknownMs);
             long currDisconnectMin = durationOfOngoingDisconnectMs / 
COORDINATOR_DISCONNECT_LOGGING_INTERVAL_MS;
             if (currDisconnectMin > totalDisconnectedMin) {
-                log.debug("Consumer has been disconnected from the group 
coordinator for {}ms", durationOfOngoingDisconnectMs);
+                log.warn("Consumer has been disconnected from the group 
coordinator for {}ms", durationOfOngoingDisconnectMs);

Review Comment:
   legacy consumer equivalent 
https://github.com/apache/kafka/blob/ce8b08cf2264c63e346bd678bbbdd99edf7c47d1/clients/src/main/java/org/apache/kafka/clients/consumer/internals/AbstractCoordinator.java#L1021
 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to