From: joonbum.ko Date: Wed, 24 May 2017 06:20:48 +0000 (+0900) Subject: tpl_wayland_egl_thread: Deleted unnecessary logs that were printed too often. X-Git-Tag: accepted/tizen/unified/20170711.180707~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93fa46c0e3708b9f214058da6064659619dffe41;p=platform%2Fcore%2Fuifw%2Flibtpl-egl.git tpl_wayland_egl_thread: Deleted unnecessary logs that were printed too often. Change-Id: Ibbb51f8a3e4cad25a2096581bd7485e0006517b0 Signed-off-by: joonbum.ko --- diff --git a/src/tpl_wayland_egl_thread.c b/src/tpl_wayland_egl_thread.c index bfc87d2..3323372 100644 --- a/src/tpl_wayland_egl_thread.c +++ b/src/tpl_wayland_egl_thread.c @@ -240,8 +240,6 @@ _twe_thread_wl_disp_prepare(GSource *source, gint *time) { twe_wl_disp_source *disp_source = (twe_wl_disp_source *)source; - TPL_LOG_T("WL_EGL", "prepare| gsource(%p) wl_display(%p)", - source, disp_source->disp); while (wl_display_prepare_read_queue(disp_source->disp, disp_source->ev_queue) != 0) { if (wl_display_dispatch_queue_pending(disp_source->disp, @@ -267,15 +265,11 @@ _twe_thread_wl_disp_check(GSource *source) } if (disp_source->gfd.revents & G_IO_IN) { - TPL_LOG_T("WL_EGL", "read_events| gsource(%p) wl_display(%p)", - source, disp_source->disp); if (wl_display_read_events(disp_source->disp) == -1) _twe_display_print_err(disp_source, "read_event."); return TRUE; } else { - TPL_LOG_T("WL_EGL", "cancel_read| gsource(%p) wl_display(%p)", - source, disp_source->disp); wl_display_cancel_read(disp_source->disp); } @@ -293,8 +287,6 @@ _twe_thread_wl_disp_dispatch(GSource *source, GSourceFunc cb, gpointer date) } if (disp_source->gfd.revents & G_IO_IN) { - TPL_LOG_T("WL_EGL", "dispatch| gsource(%p) wl_display(%p)", - disp_source, disp_source->disp); if (wl_display_dispatch_queue_pending(disp_source->disp, disp_source->ev_queue) == -1) { _twe_display_print_err(disp_source, "dispatch_queue_pending"); @@ -956,8 +948,6 @@ _twe_thread_wl_surface_dispatch(GSource *source, GSourceFunc cb, gpointer date) ssize_t s; uint64_t u; - TPL_LOG_T("WL_EGL", "dispatch| gsource(%p) read event_fd(%d)", - wl_surf_source, wl_surf_source->event_fd); s = read(wl_surf_source->event_fd, &u, sizeof(uint64_t)); if (s != sizeof(uint64_t)) TPL_ERR("Failed to read from event_fd(%d)",