From 5c4fefa5332f56b2a5f0dd8b30bf495e44a479c0 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 3 May 2019 11:42:34 -0400 Subject: Small code fix Signed-off-by: Matthew Heon --- 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 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 } } -- cgit v1.2.3-54-g00ecf