From: Hermet Park Date: Mon, 28 Nov 2016 12:12:56 +0000 (+0900) Subject: Removed LOGE() macro. X-Git-Tag: submit/tizen_3.0/20161201.104015~3^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d710f947214124b9fe45b699d637f5dfbfa5556e;p=platform%2Fcore%2Fuifw%2Fui-viewmgr.git Removed LOGE() macro. In the example, it's recommended to use dlog_print(). Replaced with it. Change-Id: Iac4ff87938f1289bef77aab39b5b39cc92a4f35b --- diff --git a/src/examples/efl/c/page11.cpp b/src/examples/efl/c/page11.cpp index 7922f1d..c3ec020 100644 --- a/src/examples/efl/c/page11.cpp +++ b/src/examples/efl/c/page11.cpp @@ -70,7 +70,7 @@ static void ctxpopup_item_select_cb(void *data, Eo *obj, void *event_info) { Elm_Object_Item *it = (Elm_Object_Item *) event_info; - LOGE("Item (%s) is selected", elm_object_item_text_get(it)); + dlog_print(DLOG_ERROR, LOG_TAG, "Item (%s) is selected", elm_object_item_text_get(it)); elm_ctxpopup_dismiss(obj); } diff --git a/src/examples/efl/cpp/page11.h b/src/examples/efl/cpp/page11.h index 1ca1791..762045e 100644 --- a/src/examples/efl/cpp/page11.h +++ b/src/examples/efl/cpp/page11.h @@ -22,7 +22,7 @@ static void _ctxpopupItemSelectCb(void *data, Eo *obj, void *event_info) { auto it = static_cast(event_info); - LOGE("Item (%s) is selected", elm_object_item_text_get(it)); + dlog_print(DLOG_ERROR, LOG_TAG, "Item (%s) is selected", elm_object_item_text_get(it)); elm_ctxpopup_dismiss(obj); }