From: Stéphane Graber Date: Tue, 16 Jul 2024 14:08:31 +0000 (-0400) Subject: idmap: Lower logging level of newXidmap tools to INFO X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4463%2Fhead;p=thirdparty%2Flxc.git idmap: Lower logging level of newXidmap tools to INFO Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/idmap_utils.c b/src/lxc/idmap_utils.c index a0f0a4099..d1e40ac78 100644 --- a/src/lxc/idmap_utils.c +++ b/src/lxc/idmap_utils.c @@ -162,13 +162,13 @@ int lxc_map_ids(struct list_head *idmap, pid_t pid) */ uidmap = idmaptool_on_path_and_privileged("newuidmap", CAP_SETUID); if (uidmap == -ENOENT) - WARN("newuidmap binary is missing"); + INFO("newuidmap binary is missing"); else if (!uidmap) WARN("newuidmap is lacking necessary privileges"); gidmap = idmaptool_on_path_and_privileged("newgidmap", CAP_SETGID); if (gidmap == -ENOENT) - WARN("newgidmap binary is missing"); + INFO("newgidmap binary is missing"); else if (!gidmap) WARN("newgidmap is lacking necessary privileges");