X Tutup
Skip to content

Commit bdb4e0c

Browse files
tblumekeszybz
authored andcommitted
systemd-nspawn: decrease non-fatal mount errors to debug level (systemd#4569)
non-fatal mount errors shouldn't be logged as warnings.
1 parent f9b1947 commit bdb4e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nspawn/nspawn-mount.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ int mount_all(const char *dest,
429429
o = options;
430430
}
431431

432-
r = mount_verbose(mount_table[k].fatal ? LOG_ERR : LOG_WARNING,
432+
r = mount_verbose(mount_table[k].fatal ? LOG_ERR : LOG_DEBUG,
433433
mount_table[k].what,
434434
where,
435435
mount_table[k].type,

0 commit comments

Comments
 (0)
X Tutup