guozhangwang commented on a change in pull request #9671: URL: https://github.com/apache/kafka/pull/9671#discussion_r539567098
########## File path: clients/src/main/java/org/apache/kafka/clients/consumer/internals/AbstractCoordinator.java ########## @@ -853,7 +844,7 @@ public void onSuccess(ClientResponse resp, RequestFuture<Void> future) { @Override public void onFailure(RuntimeException e, RequestFuture<Void> future) { - clearFindCoordinatorFuture(); + log.debug("FindCoordinator request failed", e); Review comment: if you just have ``` log.debug("FindCoordinator request failed due to {}", e) ``` Then e.toString would be called which would usually be `e.name(): e.getMessage()`. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org