Fix wrong log formats 24/154224/1
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 10 Oct 2017 00:46:05 +0000 (09:46 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Tue, 10 Oct 2017 00:46:05 +0000 (09:46 +0900)
Change-Id: I06d6dfec909b7500c4c6d7e1f91a2e96052ca10f
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/manager.c
ug-efl-engine/ug-efl-engine.c

index 6510f23..8314c1a 100644 (file)
@@ -926,7 +926,7 @@ int ugman_ug_destroying(ui_gadget_h ug)
        _DBG("ugman_ug_destroying start ug(%p)", ug);
 
        if (!ug || !ugman_ug_exist(ug)) {
-               _ERR("ugman_ug_destroying failed: Invalid ug(%p)");
+               _ERR("ugman_ug_destroying failed: Invalid ug");
                errno = EINVAL;
                return -1;
        }
@@ -960,7 +960,7 @@ int ugman_ug_del(ui_gadget_h ug)
        _DBG("ugman_ug_del start ug(%p)", ug);
 
        if (!ug || !ugman_ug_exist(ug)) {
-               _ERR("ugman_ug_del failed: Invalid ug(%p)");
+               _ERR("ugman_ug_del failed: Invalid ug");
                errno = EINVAL;
                return -1;
        }
index 1329dd2..4b3f43a 100755 (executable)
@@ -247,7 +247,7 @@ static void on_destroy(ui_gadget_h ug, ui_gadget_h t_ug,
 {
        if (!ug)
                return;
-       _DBG("\t ug=%p tug=%p layout_state=%d", ug, t_ug, ug->layout_state);
+       _DBG("ug=%p tug=%p layout_state=%d", ug, t_ug, ug->layout_state);
 
        evas_object_intercept_hide_callback_del(ug->layout,
                                                __on_hideonly_cb);
@@ -284,7 +284,7 @@ static void on_destroy(ui_gadget_h ug, ui_gadget_h t_ug,
                                        __hide_finished);
                elm_object_item_del_cb_set(ug->effect_layout, __del_finished);
        } else {
-               _WRN("[UG Effect Plug-in] : layout state(%p) error!!", ug->layout_state);
+               _WRN("[UG Effect Plug-in] : layout state(%d) error!!", ug->layout_state);
                __del_effect_end(ug);
        }
 }