[systemd-commits] src/core

Michal Schmidt michich at kemper.freedesktop.org
Mon Mar 25 04:35:32 PDT 2013


 src/core/timer.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c5962bd1d11553425e3784ee00aa8d101c1b80fc
Author: Michal Schmidt <mschmidt at redhat.com>
Date:   Mon Mar 25 12:31:44 2013 +0100

    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.

diff --git a/src/core/timer.c b/src/core/timer.c
index fd8e50e..d98468f 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);
 }
 



More information about the systemd-commits mailing list