summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-05-03 11:42:34 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-05-03 11:42:34 -0400
commit5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0 (patch)
treecb4bd1276f5887a968193bd9a099635f2e197bfb /libpod/container_internal.go
parent4d348d7839b7d018435cd4db6e82826269d8b399 (diff)
downloadpodman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.tar.gz
podman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.tar.bz2
podman-5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0.zip
Small code fix
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/container_internal.go')
-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 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
}
}