In the example, it's recommended to use dlog_print().
Replaced with it.
Change-Id: Iac4ff87938f1289bef77aab39b5b39cc92a4f35b
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);
}
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);
}