From: Zbigniew Jędrzejewski-Szmek Date: Sun, 5 Feb 2017 08:37:46 +0000 (-0500) Subject: core/timer: downgrade message about random time addition (#5229) X-Git-Tag: v233~168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=382852fd581efe3cc0ae11154102ab9f435adea1;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/core/timer.c b/src/core/timer.c index d7441d638ff..af67b7591a5 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) {