diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-05-03 11:42:34 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-05-03 11:42:34 -0400 |
commit | 5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0 (patch) | |
tree | cb4bd1276f5887a968193bd9a099635f2e197bfb | |
parent | 4d348d7839b7d018435cd4db6e82826269d8b399 (diff) | |
download | podman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.tar.gz podman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.tar.bz2 podman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.zip |
Small code fix
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
-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 0dadcd1ca..0b4e5763e 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -235,7 +235,7 @@ func (c *Container) handleRestartPolicy(ctx context.Context) (restarted bool, er logrus.Debugf("Container %s restart policy trigger: on retry %d (of %d)", c.ID(), c.state.RestartCount, c.config.RestartRetries) } else { - logrus.Debugf("Container %s restart policy trigger: retries exhausted") + logrus.Debugf("Container %s restart policy trigger: retries exhausted", c.ID()) return false, nil } } |