From bee4607d9a94f689b8ff0945765be9851df14d9a Mon Sep 17 00:00:00 2001 From: Fabrizio Steiner Date: Wed, 12 Apr 2017 18:32:00 +0200 Subject: [PATCH] Output "Checking containers for updated images" as debug entry. fixes GH-66 --- actions/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update.go b/actions/update.go index c537228..b41d34c 100644 --- a/actions/update.go +++ b/actions/update.go @@ -35,7 +35,7 @@ func containerFilter(names []string) container.Filter { // any of the images, the associated containers are stopped and restarted with // the new image. func Update(client container.Client, names []string, cleanup bool, noRestart bool) error { - log.Info("Checking containers for updated images") + log.Debug("Checking containers for updated images") containers, err := client.ListContainers(containerFilter(names)) if err != nil {