From 7dd5dbdd56afad209f88806fecc1199ce47f33c8 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Tue, 16 Jan 2018 15:24:14 -0800 Subject: [PATCH] Drop log level to TRACE For people not using driver networks these log lines would just be confusing. --- client/task_runner.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/task_runner.go b/client/task_runner.go index 8befef0c3..9d45d91f7 100644 --- a/client/task_runner.go +++ b/client/task_runner.go @@ -1446,13 +1446,13 @@ func (r *TaskRunner) startTask() error { r.logger.Printf("[INFO] client: alloc %s task %s auto-advertising detected IP %s", r.alloc.ID, r.task.Name, sresp.Network.IP) } else { - r.logger.Printf("[DEBUG] client: alloc %s task %s detected IP %s but not auto-advertising", + r.logger.Printf("[TRACE] client: alloc %s task %s detected IP %s but not auto-advertising", r.alloc.ID, r.task.Name, sresp.Network.IP) } } if sresp.Network == nil || sresp.Network.IP == "" { - r.logger.Printf("[DEBUG] client: alloc %s task %s could not detect a driver IP", r.alloc.ID, r.task.Name) + r.logger.Printf("[TRACE] client: alloc %s task %s could not detect a driver IP", r.alloc.ID, r.task.Name) } // Update environment with the network defined by the driver's Start method.