]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mount-util: Silence noisy trace log message 32392/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 22 Apr 2024 16:01:06 +0000 (18:01 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 22 Apr 2024 16:01:06 +0000 (18:01 +0200)
src/shared/mount-util.c

index 72fa4fee43fe4cee69096e0c40f2c7cb0651d4a0..ed126a76d82b448591f34a42441c70ed99274302 100644 (file)
@@ -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;
                         }