diff options
author | tblume <Thomas.Blume@suse.com> | 2016-07-18 12:23:08 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-07-18 12:23:08 +0200 |
commit | 201b13c81eb05b28c21bc462aa4bba54040509b8 (patch) | |
tree | 6ad7e0a2550c1fbbc5e60f8026b98a5f491d8c3b /src/nspawn | |
parent | b6070695c8f94bf47ffca8557048bdd16a833a12 (diff) |
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.
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn-mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn-mount.c b/src/nspawn/nspawn-mount.c index 8e2d2d543c..9f4903c842 100644 --- a/src/nspawn/nspawn-mount.c +++ b/src/nspawn/nspawn-mount.c @@ -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; } |