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.
(cherry picked from commit bdb4e0c)

[tblume: fixes bsc#1004289]
  • Loading branch information
tblume authored and fbuihuu committed Nov 10, 2016
1 parent 448b63a commit bbf60e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nspawn/nspawn-mount.c
Expand Up @@ -435,7 +435,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 bbf60e2

Please sign in to comment.