Skip to content

Commit

Permalink
core/timer: downgrade message about random time addition (#5229)
Browse files Browse the repository at this point in the history
This seems like something that shouldn't be higher then debug level, even
if it does not get emitted too often.

Fixes #5228.
  • Loading branch information
keszybz authored and poettering committed Feb 5, 2017
1 parent cfe5b07 commit 382852f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/timer.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 382852f

Please sign in to comment.