summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-02-17 09:40:31 -0500
committerGitHub <noreply@github.com>2021-02-17 09:40:31 -0500
commitaa7c7bde7918ee830551299c0bf2196ec00b18ec (patch)
tree5c664388b92965324fcbba55234b9b3c3d8d07cc /pkg
parentd55d80a04105968574c1a1d0e0589806b95c044c (diff)
parent12b6342c3d96cabb60971a8633dce0804e19ac5c (diff)
downloadpodman-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
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/abi/system.go2
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)
}
}
}