sysctl: reword warning message a bit

Let's make this less dramatic, in order to not confuse people too much
making them think that this was something to actually fix.
This commit is contained in:
Lennart Poettering 2015-08-05 11:02:24 +03:00
parent b2627f5ac4
commit 384c5b44fe

View file

@ -52,7 +52,7 @@ static int apply_all(Hashmap *sysctl_options) {
k = sysctl_write(property, value);
if (k < 0) {
log_full_errno(k == -ENOENT ? LOG_INFO : LOG_WARNING, k,
"Failed to write '%s' to '%s': %m", value, property);
"Couldn't write '%s' to '%s', ignoring: %m", value, property);
if (r == 0 && k != -ENOENT)
r = k;