diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-02-05 03:37:46 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-05 09:37:46 +0100 |
commit | 382852fd581efe3cc0ae11154102ab9f435adea1 (patch) | |
tree | f85008dacc9339ce0d7e0736f94c53696143dc49 /src | |
parent | cfe5b07106e0b2049de542a4bdcf3334b0352bbe (diff) | |
download | systemd-382852fd581efe3cc0ae11154102ab9f435adea1.tar.gz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/timer.c b/src/core/timer.c index d7441d638f..af67b7591a 100644 --- a/src/core/timer.c +++ b/src/core/timer.c @@ -350,7 +350,7 @@ static void add_random(Timer *t, usec_t *v) { else *v += add; - log_unit_info(UNIT(t), "Adding %s random time.", format_timespan(s, sizeof(s), add, 0)); + log_unit_debug(UNIT(t), "Adding %s random time.", format_timespan(s, sizeof(s), add, 0)); } static void timer_enter_waiting(Timer *t, bool initial) { |