tempoary: do not show the failed log 36/315436/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 1 Aug 2024 02:36:08 +0000 (11:36 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Thu, 1 Aug 2024 02:36:08 +0000 (11:36 +0900)
when wl_display_read_events function has been failed.
This patch is tempoary. It will be reveted later.

Change-Id: Id6b7601615618265c9f8cb28143b3e1447f48ec6

src/wayland-client.c

index dfaa58f..519edf1 100644 (file)
@@ -2357,7 +2357,9 @@ wl_display_dispatch_queue(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;
        }