ecore: lower priority of some intrusive logs.
authorVasyl Vavrychuk <vasyl.vavrychuk@globallogic.com>
Tue, 20 Jan 2015 18:13:29 +0000 (19:13 +0100)
committerCedric BAIL <cedric@osg.samsung.com>
Tue, 20 Jan 2015 18:13:34 +0000 (19:13 +0100)
Summary:
After fixed logging to journald there is lots of prints like
Jan 15 16:04:21 localhost system_server[1017]: enter idling=1 fds=1 events=0 timers=0 (next=17.14) idlers=0

Jan 15 16:04:21 localhost system_server[1017]: leave, timeout = 0

Change-Id: Id26e37a55ddaad36094308ac7fd09767cf659c04
Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@globallogic.com>
Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1875

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
src/lib/ecore/ecore_main.c

index c86f237..d7d6a42 100644 (file)
@@ -624,7 +624,7 @@ _ecore_main_gsource_prepare(GSource *source EINA_UNUSED,
      ready = TRUE;
 
    in_main_loop--;
-   INF("leave, timeout = %d", *next_time);
+   DBG("leave, timeout = %d", *next_time);
    _ecore_unlock();
 
    /* ready if we're not running (about to quit) */
@@ -700,7 +700,7 @@ _ecore_main_gsource_dispatch(GSource    *source EINA_UNUSED,
    idlers_ready = _ecore_idler_exist();
 
    in_main_loop++;
-   INF("enter idling=%d fds=%d events=%d timers=%d (next=%.2f) idlers=%d",
+   DBG("enter idling=%d fds=%d events=%d timers=%d (next=%.2f) idlers=%d",
        ecore_idling, ecore_fds_ready, events_ready,
        timers_ready, next_time, idlers_ready);