From: SooChan Lim Date: Thu, 1 Aug 2024 02:47:14 +0000 (+0900) Subject: tempoary2: do not show the failed log X-Git-Tag: accepted/tizen/unified/20241030.154527~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F37%2F315437%2F1;p=platform%2Fupstream%2Fwayland.git tempoary2: do not show the failed log when wl_display_read_events function has been failed. This patch is tempoary. It will be reveted later. Change-Id: I5891c7e2789cfde54157d6d74676bdb20d9552c6 --- diff --git a/src/wayland-client.c b/src/wayland-client.c index 519edf1..7e6141b 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -2963,7 +2963,9 @@ display_dispatch_queue_ensure_flush(struct wl_display *display, } if (wl_display_read_events(display) == -1) { +#ifdef TEMP_SHOW_READ_FAIL_LOG // FIXME: This is temporary. remove this later wl_log("wl_display_read_events failed (display:%p)\n", display); +#endif return -1; }