diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2013-03-25 12:31:44 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2013-03-25 12:31:44 +0100 |
commit | c5962bd1d11553425e3784ee00aa8d101c1b80fc (patch) | |
tree | 4012d2bd9d81ba04772980345cccc2dfe655fa72 /src | |
parent | a7e3212d89d5aefee67de79c1e7eaccf2f5645ac (diff) |
timer: downgrade time change message to debug
The manager already prints "Time has been changed" at level info. It
seems too verbose to print the time change message additionally for
every waiting timer unit.
Downgrade the per-unit message to debug.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/timer.c b/src/core/timer.c index fd8e50e71c..d98468fd9e 100644 --- a/src/core/timer.c +++ b/src/core/timer.c @@ -555,8 +555,8 @@ static void timer_time_change(Unit *u) { if (t->state != TIMER_WAITING) return; - log_info_unit(u->id, - "%s: time change, recalculating next elapse.", u->id); + log_debug_unit(u->id, + "%s: time change, recalculating next elapse.", u->id); timer_enter_waiting(t, false); } |