Github user NicoK commented on a diff in the pull request:
https://github.com/apache/flink/pull/5872#discussion_r182455513
--- 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 --
I actually prefer if before the brackets - it makes a bit more sense there
---