server: use info level dlog in function realeted tbm_surface_queue 99/112299/2
authorChangyeon Lee <cyeon.lee@samsung.com>
Tue, 31 Jan 2017 05:08:43 +0000 (14:08 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Tue, 31 Jan 2017 06:00:35 +0000 (15:00 +0900)
Change-Id: I593a4eaf1c9f3545a6968b40143ce70dd1de724a

src/wayland-tbm-server.c

index 51aa85e..97a3682 100644 (file)
@@ -1155,7 +1155,7 @@ wayland_tbm_server_client_queue_activate(struct wayland_tbm_client_queue *cqueue
 #ifdef DEBUG_TRACE
        WL_TBM_TRACE("      pid:%d\n", cqueue->pid);
 #endif
-       WL_TBM_LOG_E("send active queue pid:%d\n", cqueue->pid);
+       WL_TBM_LOG("send active queue pid:%d\n", cqueue->pid);
 
        wl_tbm_queue_send_active(cqueue->wl_tbm_queue, usage, queue_size, 1);
 }
@@ -1169,7 +1169,7 @@ wayland_tbm_server_client_queue_deactivate(struct wayland_tbm_client_queue *cque
 #ifdef DEBUG_TRACE
        WL_TBM_TRACE("    pid:%d\n", cqueue->pid);
 #endif
-       WL_TBM_LOG_E("send deactive queue pid:%d", cqueue->pid);
+       WL_TBM_LOG("send deactive queue pid:%d", cqueue->pid);
 
        wl_tbm_queue_send_deactive(cqueue->wl_tbm_queue);
 }
@@ -1218,7 +1218,7 @@ wayland_tbm_server_client_queue_export_buffer(
                (unsigned int)wl_resource_get_id(tbm_buffer->wl_buffer));
        tbm_surface_internal_set_debug_data(surface, "id", debug_id);
 
-       WL_TBM_LOG_E("export buffer pid:%d", cqueue->pid);
+       WL_TBM_LOG("export buffer pid:%d", cqueue->pid);
 
        return tbm_buffer->wl_buffer;
 }
@@ -1232,7 +1232,7 @@ wayland_tbm_server_client_queue_flush(struct wayland_tbm_client_queue *cqueue)
 #ifdef DEBUG_TRACE
        WL_TBM_TRACE("    pid:%d\n", cqueue->pid);
 #endif
-       WL_TBM_LOG_E("send flush queue pid:%d", cqueue->pid);
+       WL_TBM_LOG("send flush queue pid:%d", cqueue->pid);
 
        wl_tbm_queue_send_flush(cqueue->wl_tbm_queue);
 }