ecore_wl2_window: add more information in the log for generating configure_event 02/288502/1
authorDoyoun Kang <doyoun.kang@samsung.com>
Fri, 17 Feb 2023 08:49:43 +0000 (17:49 +0900)
committerDoyoun Kang <doyoun.kang@samsung.com>
Fri, 17 Feb 2023 08:49:43 +0000 (17:49 +0900)
Change-Id: I0fcfc48d68920cf97eef1673b316099545b9cd5d

src/lib/ecore_wl2/ecore_wl2_window.c

index 3c72c91..36b7be3 100644 (file)
@@ -250,7 +250,9 @@ _ecore_wl2_window_configure_send(Ecore_Wl2_Window *win)
    win->req_config = win->def_config;
    win->pending.configure_event++;
 
-   ERR("[WINDOW] Generate WINDOW_CONFIGURE event.. win:%d, states:%d, geo(%d,%d,%dx%d), type:%d", win->resource_id, ev->states, ev->x, ev->y, ev->w, ev->h, size_type);
+   ERR("[WINDOW] Generate WINDOW_CONFIGURE event.. win:%d, states:%d, geo(%d,%d,%dx%d), type:%d, def(size:%dx%d,serial:%d)",
+        win->resource_id, ev->states, ev->x, ev->y, ev->w, ev->h, size_type,
+        win->def_config.geometry.w, win->def_config.geometry.h, win->def_config.serial);
    ecore_event_add(ECORE_WL2_EVENT_WINDOW_CONFIGURE, ev, NULL, NULL);
 
    if (win->def_config.focused)