From: Daan De Meyer Date: Mon, 22 Apr 2024 16:01:06 +0000 (+0200) Subject: mount-util: Silence noisy trace log message X-Git-Tag: v256-rc1~64^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F32392%2Fhead;p=thirdparty%2Fsystemd.git mount-util: Silence noisy trace log message --- diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index 72fa4fee43f..ed126a76d82 100644 --- a/src/shared/mount-util.c +++ b/src/shared/mount-util.c @@ -79,7 +79,9 @@ int umount_recursive_full(const char *prefix, int flags, char **keep) { continue; if (prefix && !path_startswith(path, prefix)) { - log_trace("Not unmounting %s, outside of prefix: %s", path, prefix); + // FIXME: This is extremely noisy, we're probably doing something very wrong + // to trigger this so often, needs more investigation. + // log_trace("Not unmounting %s, outside of prefix: %s", path, prefix); continue; }