summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-04-02 09:10:52 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-02 14:22:57 +0000
commit0edfce526916712d370701a5ca6457b7df1ab2e5 (patch)
tree9863208bce1307d09f9b11ff9f9a7be3340cb419 /libpod
parent48811d539ed611c45d97d28a651e341ebeecdc92 (diff)
downloadpodman-0edfce526916712d370701a5ca6457b7df1ab2e5.tar.gz
podman-0edfce526916712d370701a5ca6457b7df1ab2e5.tar.bz2
podman-0edfce526916712d370701a5ca6457b7df1ab2e5.zip
Change errorf to warnf in warning removing ctr storage
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #571 Approved by: rhatdan
Diffstat (limited to 'libpod')
-rw-r--r--libpod/container_internal.go2
1 files changed, 1 insertions, 1 deletions
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
}