nspawn: decrease mkdir error logging in /sys to debug priority (#3748)

Such mkdir errors happen for example when trying to mkdir /sys/fs/selinux.

/sys is documented to be readonly in the container, so mkdir errors below /sys
can be expected.
They shouldn't be logged as warnings since they lead users to think that
there is something wrong.
This commit is contained in:
tblume
2016-07-18 12:23:08 +02:00
committed by Lennart Poettering
parent b6070695c8
commit 201b13c81e

View File

@@ -342,7 +342,7 @@ int mount_all(const char *dest,
if (mount_table[k].fatal)
return log_error_errno(r, "Failed to create directory %s: %m", where);
log_warning_errno(r, "Failed to create directory %s: %m", where);
log_debug_errno(r, "Failed to create directory %s: %m", where);
continue;
}