JingsongLi commented on code in PR #6146: URL: https://github.com/apache/paimon/pull/6146#discussion_r2299704277
########## paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/sink/listener/PartitionMarkDoneTrigger.java: ########## @@ -165,14 +169,29 @@ List<String> donePartitions( .toInstant() .toEpochMilli(); } + LOG.debug("Partition {} start time: {}", partition, partitionStartTime); long partitionEndTime = partitionStartTime + timeInterval; + LOG.debug("Partition {} end time: {}", partition, partitionEndTime); lastUpdateTime = Math.max(lastUpdateTime, partitionEndTime); + LOG.debug("Partition {} last update time after compare: {}", partition, lastUpdateTime); Review Comment: Can you merge these logs? Just one line. -- 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: issues-unsubscr...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org