diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-04-02 09:10:52 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-02 14:22:57 +0000 |
commit | 0edfce526916712d370701a5ca6457b7df1ab2e5 (patch) | |
tree | 9863208bce1307d09f9b11ff9f9a7be3340cb419 /libpod/container_internal.go | |
parent | 48811d539ed611c45d97d28a651e341ebeecdc92 (diff) | |
download | podman-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/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 2 |
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 } |