Blame SOURCES/0031-sysctl-downgrade-message-about-sysctl-overrides-to-d.patch

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