diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-17 09:40:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 09:40:31 -0500 |
commit | aa7c7bde7918ee830551299c0bf2196ec00b18ec (patch) | |
tree | 5c664388b92965324fcbba55234b9b3c3d8d07cc | |
parent | d55d80a04105968574c1a1d0e0589806b95c044c (diff) | |
parent | 12b6342c3d96cabb60971a8633dce0804e19ac5c (diff) | |
download | podman-aa7c7bde7918ee830551299c0bf2196ec00b18ec.tar.gz podman-aa7c7bde7918ee830551299c0bf2196ec00b18ec.tar.bz2 podman-aa7c7bde7918ee830551299c0bf2196ec00b18ec.zip |
Merge pull request #9407 from giuseppe/downgrade-warning-to-debug
[NO TEST NEEDED] infra: downgrade warning to debug
-rw-r--r-- | pkg/domain/infra/abi/system.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go index f29b98696..c68a12414 100644 --- a/pkg/domain/infra/abi/system.go +++ b/pkg/domain/infra/abi/system.go @@ -82,7 +82,7 @@ func (ic *ContainerEngine) SetupRootless(_ context.Context, cmd *cobra.Command) unitName := fmt.Sprintf("podman-%d.scope", os.Getpid()) if runsUnderSystemd || conf.Engine.CgroupManager == config.SystemdCgroupsManager { if err := utils.RunUnderSystemdScope(os.Getpid(), "user.slice", unitName); err != nil { - logrus.Warnf("Failed to add podman to systemd sandbox cgroup: %v", err) + logrus.Debugf("Failed to add podman to systemd sandbox cgroup: %v", err) } } } |