Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5872#discussion_r182442219
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinator.java
---
@@ -857,7 +859,7 @@ public void run() {
// the 'min delay between checkpoints'
lastCheckpointCompletionNanos = System.nanoTime();
- LOG.info("Completed checkpoint {} ({} bytes in {} ms).",
checkpointId,
+ LOG.info("Completed checkpoint {} for job {} ({} bytes in {}
ms).", checkpointId, job,
--- End diff --
maybe move job to the end of the message, i.e. `Completed checkpoint {} ({}
bytes in {} ms) for job {} .`
---