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