From a6d9cf9a5e46ff3a8f1f8d2515c12ff6d31056b4 Mon Sep 17 00:00:00 2001 From: Matthew Heon <matthew.heon@pm.me> Date: Thu, 14 May 2020 17:01:49 -0400 Subject: [PATCH] Fix lint Signed-off-by: Matthew Heon <matthew.heon@pm.me> --- libpod/container_internal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 13b986cac8..909ad98516 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -1014,7 +1014,7 @@ func (c *Container) init(ctx context.Context, retainRetries bool) error { // Remove any exec sessions leftover from a potential prior run. if len(c.state.ExecSessions) > 0 { if err := c.runtime.state.RemoveContainerExecSessions(c); err != nil { - logrus.Errorf("Error removing container %s exec sessions from DB: %v", err) + logrus.Errorf("Error removing container %s exec sessions from DB: %v", c.ID(), err) } c.state.ExecSessions = make(map[string]*ExecSession) }