diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-22 18:01:06 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-22 18:01:06 +0200 |
commit | 827004df94a896bd2e919dcb6e1bb0567728bb62 (patch) | |
tree | 363933a8bdccc95d9051eba8dcedaf0cdfae9989 /src/shared | |
parent | core: Set a sensible systemd-executor log level in test runs (diff) | |
download | systemd-827004df94a896bd2e919dcb6e1bb0567728bb62.tar.xz systemd-827004df94a896bd2e919dcb6e1bb0567728bb62.zip |
mount-util: Silence noisy trace log message
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/mount-util.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index 72fa4fee43..ed126a76d8 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; } |