bbejeck commented on code in PR #18214: URL: https://github.com/apache/kafka/pull/18214#discussion_r1887230884
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/StreamsMembershipManager.java: ########## @@ -833,12 +838,20 @@ private CompletableFuture<Void> revokeActiveTasks(final SortedSet<StreamsAssignm private CompletableFuture<Void> assignTasks(final SortedSet<StreamsAssignmentInterface.TaskId> activeTasksToAssign, final SortedSet<StreamsAssignmentInterface.TaskId> ownedActiveTasks, - final SortedSet<StreamsAssignmentInterface.TaskId> standbyTasksToAssign) { - log.info("Assigning active tasks {} and standby tasks {}", + final SortedSet<StreamsAssignmentInterface.TaskId> standbyTasksToAssign, + final SortedSet<StreamsAssignmentInterface.TaskId> warmupTasksToAssign) { + log.info("Assigning " + Review Comment: nit: Should this be `info` or `debug` ? I don't remember from previous PRs so maybe info here is good. -- 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