From 3a8a27bcffd0b1078592c280d3bdfba84170a32c Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Wed, 22 Jun 2016 13:48:41 -0700 Subject: [PATCH] refresh index eval id in log --- nomad/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomad/worker.go b/nomad/worker.go index 0c414fc90..775c4b5c2 100644 --- a/nomad/worker.go +++ b/nomad/worker.go @@ -328,7 +328,7 @@ SUBMIT: var state scheduler.State if result.RefreshIndex != 0 { // Wait for the the raft log to catchup to the evaluation - w.logger.Printf("[DEBUG] worker: refreshing state to index %d", result.RefreshIndex) + w.logger.Printf("[DEBUG] worker: refreshing state to index %d for %q", result.RefreshIndex, plan.EvalID) if err := w.waitForIndex(result.RefreshIndex, raftSyncLimit); err != nil { return nil, nil, err }