From: Jihoon Kim Date: Tue, 27 Oct 2020 03:07:41 +0000 (+0900) Subject: Change log level X-Git-Tag: submit/tizen_6.0/20201106.085023~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F246928%2F1;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-wl-textinput.git Change log level Change-Id: I6e4b094895e4fb51e3c945114529210ae6cb49ff Signed-off-by: Jihoon Kim --- diff --git a/src/e_mod_input_panel.c b/src/e_mod_input_panel.c index 2abaaa8..ae7232c 100644 --- a/src/e_mod_input_panel.c +++ b/src/e_mod_input_panel.c @@ -114,7 +114,7 @@ _e_input_panel_start_drawing(E_Input_Panel_Surface *ips) ips->resize_timer = NULL; } - LOGD("Norender pop by resizing keyboard"); + LOGI("Norender pop by resizing keyboard"); e_comp_canvas_norender_pop(); ips->resizing = EINA_FALSE; } @@ -129,7 +129,7 @@ _resize_timeout_cb(void *data) ips = data; if (!ips) return ECORE_CALLBACK_CANCEL; - LOGD("Norender pop by resizing keyboard timeout"); + LOGI("Norender pop by resizing keyboard timeout"); e_comp_canvas_norender_pop(); ips->resizing = EINA_FALSE; @@ -142,7 +142,7 @@ _e_input_panel_stop_drawing(E_Input_Panel_Surface *ips) if (!ips) return; if (ips->resizing) return; - LOGD("Norender push by resizing keyboard"); + LOGI("Norender push by resizing keyboard"); e_comp_canvas_norender_push(); ips->resizing = EINA_TRUE; @@ -264,7 +264,7 @@ _e_input_panel_surface_show(E_Input_Panel_Surface *ips) if (!ips) return; - LOGD("parent:%p, focus:%p, wait_update %d\n", + LOGI("parent:%p, focus:%p, wait_update %d\n", ips->ec ? ips->ec->parent : NULL, e_client_focused_get(), g_input_panel->wait_update); if (g_input_panel->wait_update) @@ -292,7 +292,7 @@ static void _wait_update_timer_del() { if (g_timer_wait_update) { - LOGD("deleting wait_update timer"); + LOGI("deleting wait_update timer"); ecore_timer_del(g_timer_wait_update); g_timer_wait_update = NULL; } @@ -325,7 +325,7 @@ _e_input_panel_surface_cb_ready_set(struct wl_client *client EINA_UNUSED, struct return; } - LOGD("IPS::SHOW::READY\n"); + LOGI("IPS::SHOW::READY\n"); // base_output_resolution e_client_base_output_resolution_transform_adjust(ips->ec); @@ -385,7 +385,7 @@ static const struct wl_input_panel_surface_interface _e_input_panel_surface_impl static void _e_input_panel_surface_resource_destroy(struct wl_resource *resource) { - LOGD(""); + LOGI(""); E_Input_Panel_Surface *ips = wl_resource_get_user_data(resource); E_Input_Panel *input_panel = NULL; E_Client *ec = NULL; @@ -422,11 +422,11 @@ _e_input_panel_surface_resource_destroy(struct wl_resource *resource) if (ips->resizing) { - LOGD("Destroyed Waiting Resize Input Surface. Starting Drawing Again"); + LOGI("Destroyed Waiting Resize Input Surface. Starting Drawing Again"); _e_input_panel_start_drawing(ips); } - LOGD("Removing ips %p from input panel %p", ips, input_panel); + LOGI("Removing ips %p from input panel %p", ips, input_panel); input_panel->surfaces = eina_list_remove(input_panel->surfaces, ips); E_FREE_FUNC(ips->eh.rot_geometry_set, ecore_event_handler_del); E_FREE_FUNC(ips->eh.rot_change_end, ecore_event_handler_del); @@ -638,7 +638,7 @@ _ips_show(E_Client *ec) if (ec->visible) return; - LOGD("IPS::SHOW\n"); + LOGI("IPS::SHOW\n"); _e_input_panel_position_set(ec, ec->client.w, ec->client.h); @@ -669,7 +669,7 @@ _e_input_panel_surface_visible_update(E_Input_Panel_Surface *ips) ips->need_show = EINA_TRUE; else if (ips->resizing) { - LOGD("Keyboard is currently resizing. set need_show."); + LOGI("Keyboard is currently resizing. set need_show."); ips->need_show = EINA_TRUE; } else @@ -680,7 +680,7 @@ _e_input_panel_surface_visible_update(E_Input_Panel_Surface *ips) } else { - LOGD("IPS::DEFER_SHOW::HIDE\n"); + LOGI("IPS::DEFER_SHOW::HIDE\n"); ec->visible = EINA_FALSE; /* We have to reset the flag of pending_show to prevent showing after * finish the rotation. Directly set this value, since there is no way @@ -810,7 +810,7 @@ _e_input_panel_client_cb_rotation_change_end(void *data, int type, void *event) goto end; if (ips->showing) { - LOGD("current angle : %d", ec->e.state.rot.ang.curr); + LOGI("current angle : %d", ec->e.state.rot.ang.curr); _e_input_panel_position_set(ec, ec->client.w, ec->client.h); } @@ -854,7 +854,7 @@ _e_input_panel_client_cb_rotation_geometry_set(void *data, int type, void *event if ((w != ec->e.state.rot.geom[i].w) || (h != ec->e.state.rot.geom[i].h)) { - LOGD("Resizing by Rotation Geometry. Pending Drawing"); + LOGI("Resizing by Rotation Geometry. Pending Drawing"); _e_input_panel_stop_drawing(ips); } @@ -869,7 +869,7 @@ _e_input_panel_client_cb_remove(void *data, E_Client *ec) if (ec == ips->ec) { - LOGD("Remove IPS's ec. ips:%p, ips->ec:%p", ips, ips->ec); + LOGI("Remove IPS's ec. ips:%p, ips->ec:%p", ips, ips->ec); ips->ec = NULL; } } @@ -889,7 +889,7 @@ _e_ips_cb_evas_resize(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *e evas_object_geometry_get(obj, NULL, NULL, &w, &h); - LOGD("current angle : %d", ec->e.state.rot.ang.curr); + LOGI("current angle : %d", ec->e.state.rot.ang.curr); _e_input_panel_position_set(ec, w, h); ips = _e_input_panel_surface_get(ec); @@ -909,7 +909,7 @@ _e_ips_cb_evas_resize(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *e if ((w == ec->e.state.rot.geom[i].w) || (h == ec->e.state.rot.geom[i].h)) { - LOGD("Resize Done to Rotation Geometry. Starting Drawing Again"); + LOGI("Resize Done to Rotation Geometry. Starting Drawing Again"); _e_input_panel_start_drawing(ips); } } @@ -920,7 +920,7 @@ _e_input_panel_effect_end(void *data, E_Client *ec) E_Input_Panel_Surface *ips = data; if (!ips) return EINA_TRUE; - LOGD("Effect end IPS's ec. ips:%p, ips->ec:%p", ips, ips->ec); + LOGI("Effect end IPS's ec. ips:%p, ips->ec:%p", ips, ips->ec); if (!ips->showing) vconf_set_int(VCONFKEY_ISF_INPUT_PANEL_STATE, VCONFKEY_ISF_INPUT_PANEL_STATE_DID_HIDE); @@ -940,7 +940,7 @@ _e_ips_cb_mouse_up(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED g_floating_info->mouse_pressed = EINA_FALSE; g_floating_info->moving_req = EINA_FALSE; - LOGD("[Mouse up] Send input panel geometry"); + LOGI("[Mouse up] Send input panel geometry"); e_text_input_update_input_panel_geometry(ec); } @@ -1033,7 +1033,7 @@ _e_input_panel_rotation_geometry_set(void *data, E_Client *ec) if ((w != ec->e.state.rot.geom[i].w) || (h != ec->e.state.rot.geom[i].h)) { - LOGD("Resizing by Rotation Geometry. Pending Drawing..."); + LOGI("Resizing by Rotation Geometry. Pending Drawing..."); _e_input_panel_stop_drawing(ips); } } @@ -1046,7 +1046,7 @@ _e_input_panel_cb_surface_get(struct wl_client *client, struct wl_resource *reso E_Input_Panel_Surface *ips = NULL; E_Comp_Client_Data *cdata = NULL; - LOGD("client %p input_panel %p ec %p resource %p surface_resource %p", + LOGI("client %p input_panel %p ec %p resource %p surface_resource %p", client, input_panel, ec, resource, surface_resource); if (!input_panel) @@ -1136,7 +1136,7 @@ _e_input_panel_cb_surface_get(struct wl_client *client, struct wl_resource *reso ips->ec = ec; ips->input_panel = input_panel; - LOGD("Create IPS.. ips:%p, input_panel:%p, ec:%p", ips, input_panel, ec); + LOGI("Create IPS.. ips:%p, input_panel:%p, ec:%p", ips, input_panel, ec); _e_input_panel_surface_append(input_panel, ips, resource); @@ -1173,7 +1173,7 @@ _e_input_panel_unbind(struct wl_resource *resource) E_Input_Panel_Surface *ips; E_Input_Panel *input_panel = wl_resource_get_user_data(resource); - LOGD("resource %p input_panel %p", resource, input_panel); + LOGI("resource %p input_panel %p", resource, input_panel); if (!input_panel) { @@ -1187,14 +1187,14 @@ _e_input_panel_unbind(struct wl_resource *resource) EINA_LIST_FOREACH_SAFE(input_panel->surfaces, l, l_next, ips) { - LOGD("foreach ips %p resource %p l %p", ips, resource, l); + LOGI("foreach ips %p resource %p l %p", ips, resource, l); if (ips && ips->resource == resource) { E_Client *ec; E_Comp_Wl_Client_Data *cdata; input_panel->surfaces = eina_list_remove_list(input_panel->surfaces, l); - LOGD("Removed surface %p from list %p", l, input_panel->surfaces); + LOGI("Removed surface %p from list %p", l, input_panel->surfaces); if (!(ec = ips->ec)) continue; if (e_object_is_del(E_OBJECT(ec))) continue; @@ -1219,7 +1219,7 @@ _e_input_panel_bind(struct wl_client *client, void *data, uint32_t version EINA_ resource = wl_resource_create(client, &wl_input_panel_interface, 1, id); if (!resource) return; - LOGD("client %p input_panel %p resource %p", client, input_panel, resource); + LOGI("client %p input_panel %p resource %p", client, input_panel, resource); if (input_panel->resource == NULL) { @@ -1250,7 +1250,7 @@ e_input_panel_visibility_change(Eina_Bool visible) if (!g_input_panel) return; - LOGD("e_input_panel_visibility_change : %d", visible); + LOGI("e_input_panel_visibility_change : %d", visible); vconf_set_int (VCONFKEY_ISF_INPUT_PANEL_STATE, visible ? VCONFKEY_ISF_INPUT_PANEL_STATE_SHOW : VCONFKEY_ISF_INPUT_PANEL_STATE_HIDE); @@ -1428,7 +1428,7 @@ _ips_client_frame_flush(E_Input_Panel_Surface *ips) if (e_object_is_del(E_OBJECT(ips->ec))) return; - LOGD("IPS::FRAME::FLUSH ec %p\n", ips->ec); + LOGI("IPS::FRAME::FLUSH ec %p\n", ips->ec); e_pixmap_image_clear(ips->ec->pixmap, EINA_TRUE); } @@ -1470,7 +1470,7 @@ e_input_panel_wait_update_set(Eina_Bool wait_update) /* If we are in wait_update mode, the input panel surfaces have to be updated forcibly */ if (wait_update) { - LOGD("Registering wait_update_timer"); + LOGI("Registering wait_update_timer"); _wait_update_timer_del(); g_timer_wait_update = ecore_timer_add(WAIT_UPDATE_TIMER_INTERVAL, _wait_update_timer_handler, NULL); @@ -1483,7 +1483,7 @@ e_input_panel_wait_update_set(Eina_Bool wait_update) if (!g_input_panel->buf_change_handler) { - LOGD("IPS::WAIT::UPDATE::SET (add buf change handler)\n"); + LOGI("IPS::WAIT::UPDATE::SET (add buf change handler)\n"); g_input_panel->buf_change_handler = ecore_event_handler_add(E_EVENT_CLIENT_BUFFER_CHANGE, _ip_cb_e_buf_change, NULL); } @@ -1495,7 +1495,7 @@ e_input_panel_wait_update_set(Eina_Bool wait_update) EINTERN void e_input_panel_transient_for_set(E_Client *parent) { - LOGD("TRANSIENT_FOR::transient_for_set : %p\n", parent); + LOGI("TRANSIENT_FOR::transient_for_set : %p\n", parent); E_Input_Panel_Surface *ips; Eina_List *l; E_Client *ec_parent = parent; @@ -1531,14 +1531,14 @@ e_input_panel_transient_for_set(E_Client *parent) continue; } - LOGD("TRANSIENT_FOR::The child already has a parent : %p\n", child->parent); + LOGI("TRANSIENT_FOR::The child already has a parent : %p\n", child->parent); if (ec_parent != child->parent) { child->parent->transients = eina_list_remove(child->parent->transients, child); if (child->parent->modal == child) child->parent->modal = NULL; child->parent = NULL; - LOGD("TRANSIENT_FOR::reset parent %p for : %p\n", child->parent, child); + LOGI("TRANSIENT_FOR::reset parent %p for : %p\n", child->parent, child); } } @@ -1547,7 +1547,7 @@ e_input_panel_transient_for_set(E_Client *parent) { if ((ec_parent) && (eina_list_data_find(parent->transients, child) != child)) { - LOGD("TRANSIENT_FOR::Adding %p into parent %p's transients list\n", child, ec_parent); + LOGI("TRANSIENT_FOR::Adding %p into parent %p's transients list\n", child, ec_parent); ec_parent->transients = eina_list_append(ec_parent->transients, child); } child->parent = ec_parent; @@ -1601,7 +1601,7 @@ e_input_panel_floating_position_set(int x, int y) else cur_angle = floating_ec->zone->rot.curr; - LOGD("current angle : %d", cur_angle); + LOGI("current angle : %d", cur_angle); switch (cur_angle) { case 90: @@ -1626,7 +1626,7 @@ e_input_panel_floating_position_set(int x, int y) Eina_Bool e_input_panel_surface_destroy(E_Client *ec) { - LOGD(""); + LOGI(""); E_Input_Panel_Surface *ips; Eina_List *l; Eina_List *l_next; @@ -1641,7 +1641,7 @@ e_input_panel_surface_destroy(E_Client *ec) g_input_panel->surfaces = eina_list_remove_list(g_input_panel->surfaces, l); if (ips->resizing) { - LOGD("Destroyed Waiting Resize Window. Starting Drawing Again"); + LOGI("Destroyed Waiting Resize Window. Starting Drawing Again"); _e_input_panel_start_drawing(ips); } } diff --git a/src/e_mod_main.c b/src/e_mod_main.c index 5cdf703..9581d17 100644 --- a/src/e_mod_main.c +++ b/src/e_mod_main.c @@ -190,7 +190,7 @@ _e_text_input_send_input_panel_geometry(struct wl_resource *resource, int x, int client_surface_ec->e.state.rot.ang.curr : client_surface_ec->e.state.rot.ang.next; - LOGD("curr : %d, next : %d, angle : %d\n", client_surface_ec->e.state.rot.ang.curr, + LOGI("curr : %d, next : %d, angle : %d\n", client_surface_ec->e.state.rot.ang.curr, client_surface_ec->e.state.rot.ang.next, angle); } @@ -207,7 +207,7 @@ _e_text_input_send_input_panel_geometry(struct wl_resource *resource, int x, int break; } - LOGD("angle : %d, x : %d, y : %d, w : %d, h : %d\n", angle, x, y, w, h); + LOGI("angle : %d, x : %d, y : %d, w : %d, h : %d\n", angle, x, y, w, h); wl_text_input_send_input_panel_geometry(resource, x, y, w, h); } @@ -315,7 +315,7 @@ static void send_hide_input_panel(E_Input_Method *input_method) { if (input_method && input_method->resource && input_method->context && input_method->context->resource) { - LOGD("Request to hide IME"); + LOGI("Request to hide IME"); wl_input_method_send_hide_input_panel(input_method->resource, input_method->context->resource); } } @@ -324,7 +324,7 @@ static void _keyboard_mode_changed_cb(keynode_t *key, void* data) { bool val = vconf_keynode_get_bool(key); - LOGD("keyboard mode : %d\n", val); + LOGI("keyboard mode : %d\n", val); if (val == false) { @@ -952,7 +952,7 @@ _e_text_input_method_context_cb_update_candidate_state(struct wl_client *client return; } - LOGD("Candidate State : %d", state); + LOGI("Candidate State : %d", state); Eina_Bool prev_show_state = g_show_state_candidate; g_show_state_candidate = state; if (g_input_panel_state == E_INPUT_PANEL_STATE_DID_HIDE) @@ -1159,7 +1159,7 @@ _e_text_input_method_context_cb_resource_destroy(struct wl_resource *resource) } #endif - LOGD("resource(%p), context(%p)", resource, context); + LOGI("resource(%p), context(%p)", resource, context); if ((context->input_method) && (context->input_method->context == context)) @@ -1191,7 +1191,7 @@ _e_mod_ecore_key_down_cb(void *data, int type, void *event) Ecore_Event_Key *ev = (Ecore_Event_Key *)event; if (ev->event_flags & ECORE_EVENT_FLAG_CANCEL) { - SECURE_LOGD("%s key is cancelled.", ev->key); + SECURE_LOGI("%s key is cancelled.", ev->key); return ECORE_CALLBACK_PASS_ON; } @@ -1215,7 +1215,7 @@ _e_mod_ecore_key_down_cb(void *data, int type, void *event) (is_number_key(ev->string) && _TV)) return ECORE_CALLBACK_PASS_ON; - SECURE_LOGD("Hide IME (key : %s)", ev->key); + SECURE_LOGI("Hide IME (key : %s)", ev->key); if (g_text_input && g_text_input->resource && g_client) _input_panel_hide(g_client, g_text_input->resource, EINA_FALSE); @@ -1244,7 +1244,7 @@ _e_text_input_deactivate(E_Text_Input *text_input, E_Input_Method *input_method, #endif if (input_method->resource == destroyed_resource) { - LOGD("deactivate skipped : %p %p", input_method->resource, + LOGI("deactivate skipped : %p %p", input_method->resource, input_method->context->resource); } else @@ -1253,7 +1253,7 @@ _e_text_input_deactivate(E_Text_Input *text_input, E_Input_Method *input_method, wl_input_method_send_deactivate(input_method->resource, input_method->context->resource, need_focus_in); - LOGD("wm_map TEXTINPUT deactivate : %p %p", input_method->resource, + LOGI("wm_map TEXTINPUT deactivate : %p %p", input_method->resource, input_method->context->resource); } } @@ -1264,7 +1264,7 @@ _e_text_input_deactivate(E_Text_Input *text_input, E_Input_Method *input_method, ecore_key_down_handler = NULL; } - LOGD("Resetting input_method->input : %p, text_input : %p, %p %p", + LOGI("Resetting input_method->input : %p, text_input : %p, %p %p", input_method->input, text_input, input_method->resource, (input_method->context ? input_method->context->resource : NULL)); @@ -1313,7 +1313,7 @@ _e_text_input_cb_activate(struct wl_client *client, struct wl_resource *resource old = input_method->input; - LOGD("old : %p, text_input : %p, %d", old, text_input, g_input_panel_state); + LOGI("old : %p, text_input : %p, %d", old, text_input, g_input_panel_state); if (old == text_input) return; @@ -1353,7 +1353,7 @@ _e_text_input_cb_activate(struct wl_client *client, struct wl_resource *resource if (context->resource) { wl_input_method_send_activate(input_method->resource, context->resource, text_input->id, EINA_TRUE); - LOGD("wm_map TEXTINPUT activate : %p %p", input_method->resource, + LOGI("wm_map TEXTINPUT activate : %p %p", input_method->resource, context->resource); } else @@ -1385,7 +1385,7 @@ err: static void _e_text_input_cb_deactivate(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, struct wl_resource *seat) { - LOGD(""); + LOGI(""); E_Text_Input *text_input = wl_resource_get_user_data(resource); E_Input_Method *input_method = NULL; @@ -1454,7 +1454,7 @@ _e_text_input_method_create_context(struct wl_client *client, E_Input_Method *in wl_input_method_send_activate(input_method->resource, context->resource, text_input->id, need_focus_out); - LOGD("wm_map TEXTINPUT activate : input_method->resource(%p) context->resource(%p)", + LOGI("wm_map TEXTINPUT activate : input_method->resource(%p) context->resource(%p)", input_method->resource, context->resource); destroyed_resource = NULL; @@ -1468,7 +1468,7 @@ _e_text_input_cb_input_panel_show(struct wl_client *client, struct wl_resource * E_Text_Input *text_input = wl_resource_get_user_data(resource); E_Input_Method *input_method = NULL; - LOGD("text_input : %p\n", text_input); + LOGI("text_input : %p\n", text_input); if (!text_input) { @@ -1514,7 +1514,7 @@ _e_text_input_cb_input_panel_show(struct wl_client *client, struct wl_resource * { /* DO NOT show input panel surface until we get message "show complete" from input method, * in order to give a change to update UI */ - LOGD("IM::SHOW::WAIT_FOR_READY\n"); + LOGI("IM::SHOW::WAIT_FOR_READY\n"); g_show_client = client; wl_input_method_send_show_input_panel(input_method->resource, input_method->context->resource); @@ -1929,7 +1929,7 @@ _e_text_input_cb_get_hide_permission(struct wl_client *client EINA_UNUSED, struc if (focused_ec != client_surface_ec) { E_Window_Type focus_win_type = focused_ec->netwm.type; - LOGD("Window ID : 0x%08x, Name : %s, type : %d\n", (unsigned int)e_client_util_win_get(focused_ec), (char *)e_client_util_name_get(focused_ec), focus_win_type); + LOGI("Window ID : 0x%08x, Name : %s, type : %d\n", (unsigned int)e_client_util_win_get(focused_ec), (char *)e_client_util_name_get(focused_ec), focus_win_type); if (focus_win_type == E_WINDOW_TYPE_NOTIFICATION || focus_win_type == E_WINDOW_TYPE_POPUP_MENU) @@ -1938,7 +1938,7 @@ _e_text_input_cb_get_hide_permission(struct wl_client *client EINA_UNUSED, struc } else { - LOGD("Can't get focus window\n"); + LOGI("Can't get focus window\n"); } if (text_input->resource) @@ -2109,7 +2109,7 @@ _e_text_input_cb_resource_destroy(struct wl_resource *resource) return; } - LOGD("resource : %p", resource); + LOGI("resource : %p", resource); if (g_show_text_input == text_input) { @@ -2162,7 +2162,7 @@ _e_text_input_cb_destroy(struct wl_client *client, struct wl_resource *resource) return; } - LOGD("text_input(%p), focus(%d), input_method(%p), input_method->resource(%p), context(%p), context->resource(%p), resource(%p)", + LOGI("text_input(%p), focus(%d), input_method(%p), input_method->resource(%p), context(%p), context->resource(%p), resource(%p)", text_input, (text_input == g_text_input), input_method, input_method->resource, input_method->context, (input_method->context ? input_method->context->resource : NULL), resource); @@ -2177,7 +2177,7 @@ _e_text_input_cb_destroy(struct wl_client *client, struct wl_resource *resource) if (input_method->resource && input_method->context && input_method->context->resource) { wl_input_method_send_destroy(input_method->resource, input_method->context->resource); - LOGD("wm_map TEXTINPUT destroy : input_method->resource(%p) input_method->context->resource(%p)", + LOGI("wm_map TEXTINPUT destroy : input_method->resource(%p) input_method->context->resource(%p)", input_method->resource, input_method->context->resource); destroyed_resource = input_method->resource; @@ -2274,7 +2274,7 @@ _e_text_cb_bind_text_input_manager(struct wl_client *client, void *data, uint32_ static void _e_text_input_method_cb_unbind(struct wl_resource *resource) { - LOGD(""); + LOGI(""); E_Input_Method *input_method = wl_resource_get_user_data(resource); if (!input_method) @@ -2300,7 +2300,7 @@ _e_text_input_method_cb_unbind(struct wl_resource *resource) static void _e_text_input_method_cb_bind(struct wl_client *client, void *data, uint32_t version EINA_UNUSED, uint32_t id) { - LOGD(""); + LOGI(""); E_Input_Method *input_method = data; struct wl_resource *resource = NULL; @@ -2377,7 +2377,7 @@ _e_text_input_manager_destroy(void *data) E_Text_Input_Mgr *text_input_mgr = data; if (!text_input_mgr) return; - LOGD("input manager : %p", text_input_mgr); + LOGI("input manager : %p", text_input_mgr); if (text_input_mgr->global) { @@ -2409,7 +2409,7 @@ _e_text_input_manager_create(void) return EINA_FALSE; } - LOGD("input manager : %p", text_input_mgr); + LOGI("input manager : %p", text_input_mgr); _e_mod_text_input_shutdown_cb_add(_e_text_input_manager_destroy, text_input_mgr); @@ -2492,7 +2492,7 @@ _pol_cb_hook_client_del(void *d EINA_UNUSED, E_Client *ec) if (ec == client_surface_ec) { - LOGD("transient_for_ec deleted, hiding input panel\n"); + LOGI("transient_for_ec deleted, hiding input panel\n"); e_input_panel_visibility_change(EINA_FALSE); e_input_panel_transient_for_set(NULL); @@ -2506,7 +2506,7 @@ _pol_cb_hook_client_del(void *d EINA_UNUSED, E_Client *ec) g_timer_will_hide = NULL; } client_surface_ec = NULL; - LOGD("TRANSIENT_FOR::Reset transient_for_ec to NULL\n"); + LOGI("TRANSIENT_FOR::Reset transient_for_ec to NULL\n"); } } @@ -2549,7 +2549,7 @@ e_text_input_update_input_panel_geometry(E_Client *ec) { if (e_client_rotation_is_progress(ec)) { - LOGD("Rotation is not finished"); + LOGI("Rotation is not finished"); return; } @@ -2559,7 +2559,7 @@ e_text_input_update_input_panel_geometry(E_Client *ec) int x = 0, y = 0, w = 0, h = 0; if (e_input_panel_client_geometry_get(NULL, &x, &y, &w, &h) && !(w <= 1 || h <= 1)) { - LOGD("x : %d, y : %d, w : %d, h : %d", x, y, w, h); + LOGI("x : %d, y : %d, w : %d, h : %d", x, y, w, h); _e_text_input_send_input_panel_geometry(g_text_input->resource, x, y, w, h); } }