stevenzwu commented on code in PR #6452:
URL: https://github.com/apache/iceberg/pull/6452#discussion_r1052918822


##########
flink/v1.14/flink/src/main/java/org/apache/iceberg/flink/sink/IcebergFilesCommitter.java:
##########
@@ -361,7 +366,12 @@ private void commitOperation(
       String description,
       String newFlinkJobId,
       long checkpointId) {
-    LOG.info("Committing {} to table {} with summary: {}", description, 
table.name(), summary);
+    LOG.info(
+        "Committing {} to table: {}, checkpointId: {} with summary: {}",

Review Comment:
   the log message doesn't read quite naturally. 
   
   here is one alternative
   ```
   LOG.info("Committing {} for checkpoint {} to table{} with summary: {}", 
description, checkpointId, table.name(), summary)
   ```



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to