From 714e30f532a9f574d78336ceba2207f2508eff02 Mon Sep 17 00:00:00 2001 From: Fabrizio Steiner Date: Sun, 7 Jan 2018 10:54:56 +0100 Subject: [PATCH] Output error message when a pull failed. --- actions/update.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/actions/update.go b/actions/update.go index b41d34c..15cd017 100644 --- a/actions/update.go +++ b/actions/update.go @@ -45,8 +45,7 @@ func Update(client container.Client, names []string, cleanup bool, noRestart boo for i, container := range containers { stale, err := client.IsContainerStale(container) if err != nil { - log.Infof("Unable to update container %s. Proceeding to next.", containers[i].Name()) - log.Debug(err) + log.Infof("Unable to update container %s, err='%s'. Proceeding to next.", containers[i].Name(), err) stale = false } containers[i].Stale = stale