]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
namespace: unify logging in mount_tmpfs 16432/head
authorChristian Göttsche <cgzones@googlemail.com>
Sat, 11 Jul 2020 19:12:55 +0000 (21:12 +0200)
committerChristian Göttsche <cgzones@googlemail.com>
Sat, 11 Jul 2020 19:25:39 +0000 (21:25 +0200)
Fixes: abad72be4df9d5a13ceecd5b4d073adb370882b7
Follow up: #16426

src/core/namespace.c

index ebdbb7545b0d669ed704c26221a42bd2da9fb131..20f8beab1a15b4edfd443fe4bd7ff7e1a121cf2b 100644 (file)
@@ -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;
 }