From ecf0d20af75c144446ead4c865b3fdbd7a451417 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 17 Aug 2017 11:28:33 -0700 Subject: [PATCH] Make shutdown delay log DEBUG, not INFO --- client/task_runner.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/task_runner.go b/client/task_runner.go index 08f6efec1..e8a06a681 100644 --- a/client/task_runner.go +++ b/client/task_runner.go @@ -1173,7 +1173,8 @@ func (r *TaskRunner) run() { // Delay actually killing the task if configured. See #244 if r.task.ShutdownDelay > 0 { - r.logger.Printf("[INFO] client: delaying shutdown of alloc %q task %q for %q", r.alloc.ID, r.task.Name, r.task.ShutdownDelay) + r.logger.Printf("[DEBUG] client: delaying shutdown of alloc %q task %q for %q", + r.alloc.ID, r.task.Name, r.task.ShutdownDelay) <-time.After(r.task.ShutdownDelay) }