diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-26 19:00:11 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-26 19:06:45 -0500 |
commit | 7933e4266f8124e3fca71f67757abd44155fa1cb (patch) | |
tree | 18698a399146f9bce8ed4f4ef051408def131bb7 /src/sysctl | |
parent | 09c41feef3dbbdba36ad7bf3928ba4e29dee79c3 (diff) |
sysctl: downgrade message about sysctl overrides to debug
Printing it at info level was tedious. We don't do that for any other
overrides.
Diffstat (limited to 'src/sysctl')
-rw-r--r-- | src/sysctl/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c index 275a5b74ae..2415d84526 100644 --- a/src/sysctl/sysctl.c +++ b/src/sysctl/sysctl.c @@ -176,7 +176,7 @@ found: if (streq(value, existing)) continue; - log_info("Overwriting earlier assignment of %s in file '%s'.", p, path); + log_debug("Overwriting earlier assignment of %s in file '%s'.", p, path); free(hashmap_remove(sysctl_options, p)); free(v); } |