compositor: Supplement logs 79/315679/2
authorSeunghun Lee <shiin.lee@samsung.com>
Tue, 6 Aug 2024 04:28:13 +0000 (13:28 +0900)
committerJunSeok Kim <juns.kim@samsung.com>
Tue, 6 Aug 2024 05:18:21 +0000 (05:18 +0000)
Change-Id: Ib4d7654cc222ff7a6ceeb8a3178138ba2f093bed

src/bin/server/e_compositor.c

index 1ae12b5..67bb23c 100644 (file)
@@ -900,6 +900,8 @@ _e_surface_create(E_Client *ec)
                                                 _e_surface_cb_client_del,
                                                 surface);
 
+   ELOGF("COMPOSITOR", "Create E_Surface %p", ec, surface);
+
    return surface;
 }
 
@@ -908,6 +910,8 @@ _e_surface_destroy(E_Surface *surface)
 {
    struct wl_resource *cb;
 
+   ELOGF("COMPOSITOR", "Desroy E_Surface %p", surface->ec, surface);
+
    g_mutex_lock(&surface->base.surface_mutex);
 
    wl_signal_emit(&surface->base.destroy_signal, &surface->base.surface);
@@ -1632,7 +1636,7 @@ _e_subsurface_create(struct ds_subsurface *ds_subsurface, E_Surface *parent_surf
 
    _e_subsurface_view_init(&sub->view, sub);
 
-   ELOGF("SUBSURFACE", "Create: parent(%p)", surface->ec, epc);
+   ELOGF("COMPOSITOR", "Create E_Subsurface %p, parent (E_Surface %p)", surface->ec, sub, parent_surface);
 
    return sub;
 }
@@ -1640,7 +1644,7 @@ _e_subsurface_create(struct ds_subsurface *ds_subsurface, E_Surface *parent_surf
 static void
 _e_subsurface_destroy(E_Subsurface *sub)
 {
-   ELOGF("SUBSURFACE", "Destroy", sub->surface->ec);
+   ELOGF("SUBSURFACE", "Destroy E_Subsurface %p", sub->surface->ec, sub);
 
    wl_signal_emit(&sub->events.destroy, sub);