summaryrefslogtreecommitdiff
path: root/src/core/timer.c
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2013-03-25 12:31:44 +0100
committerMichal Schmidt <mschmidt@redhat.com>2013-03-25 12:31:44 +0100
commitc5962bd1d11553425e3784ee00aa8d101c1b80fc (patch)
tree4012d2bd9d81ba04772980345cccc2dfe655fa72 /src/core/timer.c
parenta7e3212d89d5aefee67de79c1e7eaccf2f5645ac (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/core/timer.c')
-rw-r--r--src/core/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/timer.c b/src/core/timer.c
index fd8e50e71..d98468fd9 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);
}