Skip to content

Commit

Permalink
systemd-nspawn: decrease non-fatal mount errors to debug level (syste…
Browse files Browse the repository at this point in the history
…md#4569)

non-fatal mount errors shouldn't be logged as warnings.
  • Loading branch information
tblume authored and keszybz committed Nov 7, 2016
1 parent f9b1947 commit bdb4e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nspawn/nspawn-mount.c
Expand Up @@ -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,
Expand Down

0 comments on commit bdb4e0c

Please sign in to comment.