Skip to content
Snippets Groups Projects
Commit 3a89a76b authored by Mridul Muralidharan's avatar Mridul Muralidharan
Browse files

Make log message more descriptive to aid in debugging

parent 9bd43950
No related branches found
No related tags found
No related merge requests found
......@@ -100,8 +100,10 @@ class CheckpointWriter(checkpointDir: String) extends Logging {
stopped = true
}
executor.shutdown()
val startTime = System.currentTimeMillis()
val terminated = executor.awaitTermination(10, java.util.concurrent.TimeUnit.SECONDS)
logInfo("CheckpointWriter executor terminated ? " + terminated)
val endTime = System.currentTimeMillis()
logInfo("CheckpointWriter executor terminated ? " + terminated + ", waited for " + (endTime - startTime) + " ms.")
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment