From: Christian Göttsche Date: Sat, 11 Jul 2020 19:12:55 +0000 (+0200) Subject: namespace: unify logging in mount_tmpfs X-Git-Tag: v246-rc2~89^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16432%2Fhead;p=thirdparty%2Fsystemd.git namespace: unify logging in mount_tmpfs Fixes: abad72be4df9d5a13ceecd5b4d073adb370882b7 Follow up: #16426 --- diff --git a/src/core/namespace.c b/src/core/namespace.c index ebdbb7545b0..20f8beab1a1 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -876,7 +876,7 @@ static int mount_tmpfs(const MountEntry *m) { r = label_fix_container(entry_path, source_path, 0); if (r < 0) - return log_error_errno(r, "Failed to fix label of '%s' as '%s': %m", entry_path, source_path); + return log_debug_errno(r, "Failed to fix label of '%s' as '%s': %m", entry_path, source_path); return 1; }