client: remove attach and import buffer log 59/130959/1 accepted/tizen/3.0/common/20170605.124031 accepted/tizen/3.0/ivi/20170605.015044 accepted/tizen/3.0/mobile/20170605.015032 accepted/tizen/3.0/tv/20170605.015036 accepted/tizen/3.0/wearable/20170605.015040 accepted/tizen/unified/20170605.150559 submit/tizen/20170531.095544 submit/tizen_3.0/20170602.003734
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 May 2017 14:37:24 +0000 (23:37 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 May 2017 14:38:09 +0000 (23:38 +0900)
Change-Id: Icd68d1667535fa52af241c63aea995b2d4397035

src/wayland-tbm-client.c

index 7aa5710..320d08f 100644 (file)
@@ -192,8 +192,6 @@ handle_tbm_buffer_import_with_id(void *data,
        WL_TBM_GOTO_IF_FAIL(tbm_surface != NULL, fail);
        wl_buffer_set_user_data(wl_buffer, tbm_surface);
 
-       WL_TBM_LOG("import id wl_buffer:%u tsurface:%p", (unsigned int)wl_proxy_get_id((struct wl_proxy *)wl_buffer), tbm_surface);
-
        snprintf(debug_id, sizeof(debug_id), "%u", (unsigned int)wl_proxy_get_id((struct wl_proxy *)wl_buffer));
        tbm_surface_internal_set_debug_data(tbm_surface, "id", debug_id);
 
@@ -248,8 +246,6 @@ handle_tbm_buffer_import_with_fd(void *data,
 
        wl_buffer_set_user_data(wl_buffer, tbm_surface);
 
-       WL_TBM_LOG("import fd wl_buffer:%u tsurface:%p", (unsigned int)wl_proxy_get_id((struct wl_proxy *)wl_buffer), tbm_surface);
-
        snprintf(debug_id, sizeof(debug_id), "%u", (unsigned int)wl_proxy_get_id((struct wl_proxy *)wl_buffer));
        tbm_surface_internal_set_debug_data(tbm_surface, "id", debug_id);
 
@@ -855,9 +851,6 @@ handle_tbm_queue_buffer_attached(void *data,
 
        WL_TBM_RETURN_IF_FAIL(wl_buffer != NULL);
 
-       WL_TBM_LOG("attached wl_buffer:%u",
-               (unsigned int)wl_proxy_get_id((struct wl_proxy *)wl_buffer));
-
        buffer = calloc(1, sizeof(struct wayland_tbm_buffer));
        WL_TBM_GOTO_IF_FAIL(buffer != NULL, fail_alloc);