From 0edfce526916712d370701a5ca6457b7df1ab2e5 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 2 Apr 2018 09:10:52 -0400 Subject: Change errorf to warnf in warning removing ctr storage Signed-off-by: Matthew Heon Closes: #571 Approved by: rhatdan --- libpod/container_internal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libpod') diff --git a/libpod/container_internal.go b/libpod/container_internal.go index efeb1fa77..81dc2c820 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -228,7 +228,7 @@ func (c *Container) teardownStorage() error { // Potentially another tool using containers/storage already // removed it? if err == storage.ErrNotAContainer { - logrus.Errorf("Storage for container %s already removed", c.ID()) + logrus.Warnf("Storage for container %s already removed", c.ID()) return nil } -- cgit v1.2.3-54-g00ecf