mjsax commented on code in PR #19538: URL: https://github.com/apache/kafka/pull/19538#discussion_r2055095933
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/ConsumerNetworkClient.java: ########## @@ -131,6 +131,7 @@ public RequestFuture<ClientResponse> send(Node node, ClientRequest clientRequest = client.newClientRequest(node.idString(), requestBuilder, now, true, requestTimeoutMs, completionHandler); unsent.put(node, clientRequest); + log.info("Generated FETCH with correlation id {}.", clientRequest.correlationId()); Review Comment: Logging every request at INFO level, does sound very chatty. I would believe that per-request logging would even be too chatty for DEBUG, and we should make it TRACE instead? -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org