From 36bf905181e78bf0af031ee0339ba83610538c9e Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 9 Oct 2023 09:57:12 +0200 Subject: [PATCH] api: drop debug statement remove what seems to be a debugging artifact. [NO NEW TESTS NEEDED] Signed-off-by: Giuseppe Scrivano --- pkg/api/handlers/libpod/containers_create.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/api/handlers/libpod/containers_create.go b/pkg/api/handlers/libpod/containers_create.go index 9264d72d36..dc12d76ae3 100644 --- a/pkg/api/handlers/libpod/containers_create.go +++ b/pkg/api/handlers/libpod/containers_create.go @@ -13,7 +13,6 @@ import ( "github.com/containers/podman/v4/pkg/specgen" "github.com/containers/podman/v4/pkg/specgen/generate" "github.com/containers/podman/v4/pkg/specgenutil" - "github.com/sirupsen/logrus" ) // CreateContainer takes a specgenerator and makes a container. It returns @@ -41,7 +40,6 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) { utils.Error(w, http.StatusInternalServerError, fmt.Errorf("decode(): %w", err)) return } - logrus.Errorf("Privileged: %v", sg.ContainerSecurityConfig.Privileged) if sg.Passwd == nil { t := true sg.Passwd = &t