Removed LOGE() macro. 82/100582/1
authorHermet Park <hermet@hermet.pe.kr>
Mon, 28 Nov 2016 12:12:56 +0000 (21:12 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Mon, 28 Nov 2016 12:12:56 +0000 (21:12 +0900)
In the example, it's recommended to use dlog_print().
Replaced with it.

Change-Id: Iac4ff87938f1289bef77aab39b5b39cc92a4f35b

src/examples/efl/c/page11.cpp
src/examples/efl/cpp/page11.h

index 7922f1d0876aab3a9701c2653d171f9f4b6d2a99..c3ec020c71e9301cd92a591545102e9160d69687 100644 (file)
@@ -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);
 }
 
index 1ca17913376844781e52ac752f78d390029258c3..762045ecf5d3d4040dcc9e45ace682292317709f 100644 (file)
@@ -22,7 +22,7 @@
 static void _ctxpopupItemSelectCb(void *data, Eo *obj, void *event_info)
 {
        auto it = static_cast<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);
 }