diff options
author | tblume <Thomas.Blume@suse.com> | 2016-11-07 14:20:43 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-11-07 08:20:43 -0500 |
commit | bdb4e0cb646ff33ecbb1cf4b502870f84bf4016d (patch) | |
tree | 7cb5b50ef07cf65e16a1041f806ad421998aa588 /src | |
parent | f9b1947f9b9bcdf2b28953a40b1c537038c2a958 (diff) |
systemd-nspawn: decrease non-fatal mount errors to debug level (#4569)
non-fatal mount errors shouldn't be logged as warnings.
Diffstat (limited to 'src')
-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 392498d1bb..0c24b8e18a 100644 --- a/src/nspawn/nspawn-mount.c +++ b/src/nspawn/nspawn-mount.c @@ -429,7 +429,7 @@ int mount_all(const char *dest, o = options; } - r = mount_verbose(mount_table[k].fatal ? LOG_ERR : LOG_WARNING, + r = mount_verbose(mount_table[k].fatal ? LOG_ERR : LOG_DEBUG, mount_table[k].what, where, mount_table[k].type, |