From: Mike Blumenkrantz Date: Tue, 30 Jun 2015 22:36:03 +0000 (-0400) Subject: add debug info when x11 client messages are missed X-Git-Tag: upstream/0.20.0~671 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31d0fd0417ccadaf2a7c03ba26a212defa84cda6;p=platform%2Fupstream%2Fenlightenment.git add debug info when x11 client messages are missed --- diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 6c3279f..12e7cae 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1931,7 +1931,11 @@ _e_comp_x_message(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_Cl E_Client *ec; ec = _e_comp_x_client_find_by_window(ev->win); - if (!ec) return ECORE_CALLBACK_RENEW; + if (!ec) + { + DBG("missed client message '%s' for %u", ecore_x_atom_name_get(ev->message_type), ev->win); + return ECORE_CALLBACK_RENEW; + } if (ev->message_type == ECORE_X_ATOM_NET_WM_WINDOW_OPACITY) { ec->netwm.fetch.opacity = 1;