cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=62dd6d6dd42b410df63a6cc9568df9ef511c1cec
commit 62dd6d6dd42b410df63a6cc9568df9ef511c1cec Author: Vasyl Vavrychuk <[email protected]> Date: Tue Jan 20 19:13:29 2015 +0100 ecore: lower priority of some intrusive logs. 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 <[email protected]> Reviewers: cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1875 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/ecore/ecore_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/ecore_main.c b/src/lib/ecore/ecore_main.c index c86f237..d7d6a42 100644 --- a/src/lib/ecore/ecore_main.c +++ b/src/lib/ecore/ecore_main.c @@ -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); --
