From 5707631ec6ef3b5731825f3fd52ccbecbf12c073 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 5 Jan 2011 00:05:53 +0100 Subject: [PATCH] sysctl: don't warn if sysctls are gone --- src/sysctl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sysctl.c b/src/sysctl.c index 6b0e9aa3..38ea2d18 100644 --- a/src/sysctl.c +++ b/src/sysctl.c @@ -53,7 +53,9 @@ static void apply_sysctl(const char *property, const char *value) { *n = '/'; if ((r = write_one_line_file(p, value)) < 0) { - log_warning("Failed to write '%s' to '%s': %s", value, p, strerror(-r)); + + log_full(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, + "Failed to write '%s' to '%s': %s", value, p, strerror(-r)); if (r != -ENOENT) exit_code = r; -- 2.39.5