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