1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-26 14:04:03 +03:00

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.
This commit is contained in:
Michal Schmidt 2013-03-25 12:31:44 +01:00
parent a7e3212d89
commit c5962bd1d1

View File

@ -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);
}