e4a83a8
From 2439dc6083d27271ee942559f0f73c99fa9e2b4e Mon Sep 17 00:00:00 2001
e4a83a8
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
e4a83a8
Date: Thu, 26 Feb 2015 19:00:11 -0500
e4a83a8
Subject: [PATCH] sysctl: downgrade message about sysctl overrides to debug
e4a83a8
e4a83a8
Printing it at info level was tedious. We don't do that for any other
e4a83a8
overrides.
e4a83a8
e4a83a8
(cherry picked from commit 7933e4266f8124e3fca71f67757abd44155fa1cb)
e4a83a8
---
e4a83a8
 src/sysctl/sysctl.c | 2 +-
e4a83a8
 1 file changed, 1 insertion(+), 1 deletion(-)
e4a83a8
e4a83a8
diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c
e4a83a8
index 275a5b74ae..2415d84526 100644
e4a83a8
--- a/src/sysctl/sysctl.c
e4a83a8
+++ b/src/sysctl/sysctl.c
e4a83a8
@@ -176,7 +176,7 @@ found:
e4a83a8
                         if (streq(value, existing))
e4a83a8
                                 continue;
e4a83a8
 
e4a83a8
-                        log_info("Overwriting earlier assignment of %s in file '%s'.", p, path);
e4a83a8
+                        log_debug("Overwriting earlier assignment of %s in file '%s'.", p, path);
e4a83a8
                         free(hashmap_remove(sysctl_options, p));
e4a83a8
                         free(v);
e4a83a8
                 }