Blame SOURCES/0619-core-timer-downgrade-message-about-random-time-addit.patch

17b0f1
From 7adabea503fb86b3b33da17fe65a2b5a246fcac7 Mon Sep 17 00:00:00 2001
17b0f1
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
17b0f1
Date: Sun, 5 Feb 2017 03:37:46 -0500
17b0f1
Subject: [PATCH] core/timer: downgrade message about random time addition
17b0f1
 (#5229)
17b0f1
17b0f1
This seems like something that shouldn't be higher then debug level, even
17b0f1
if it does not get emitted too often.
17b0f1
17b0f1
Fixes #5228.
17b0f1
17b0f1
(cherry picked from commit 382852fd581efe3cc0ae11154102ab9f435adea1)
17b0f1
Resolves: #1587906
17b0f1
---
17b0f1
 src/core/timer.c | 2 +-
17b0f1
 1 file changed, 1 insertion(+), 1 deletion(-)
17b0f1
17b0f1
diff --git a/src/core/timer.c b/src/core/timer.c
17b0f1
index 0a264f60d9..d32b007c7c 100644
17b0f1
--- a/src/core/timer.c
17b0f1
+++ b/src/core/timer.c
17b0f1
@@ -335,7 +335,7 @@ static void add_random(Timer *t, usec_t *v) {
17b0f1
         else
17b0f1
                 *v += add;
17b0f1
 
17b0f1
-        log_unit_info(UNIT(t)->id, "Adding %s random time.", format_timespan(s, sizeof(s), add, 0));
17b0f1
+        log_unit_debug(UNIT(t)->id, "Adding %s random time.", format_timespan(s, sizeof(s), add, 0));
17b0f1
 }
17b0f1
 
17b0f1
 static void timer_enter_waiting(Timer *t, bool initial) {