From: Jihoon Kim Date: Wed, 22 Jan 2020 12:27:39 +0000 (+0900) Subject: Apply secure log in IME interface X-Git-Tag: accepted/tizen/unified/20200130.214612~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F223104%2F1;p=platform%2Fcore%2Fuifw%2Fisf.git Apply secure log in IME interface Change-Id: I6cf97483a032a7211251657e149f6ee519e1a2fa Signed-off-by: Jihoon Kim --- diff --git a/ism/src/scim_helper.cpp b/ism/src/scim_helper.cpp index 7876555..af3bf16 100644 --- a/ism/src/scim_helper.cpp +++ b/ism/src/scim_helper.cpp @@ -961,7 +961,7 @@ HelperAgent::handle_message (MessageItem *message) free (m_impl->surrounding_text); m_impl->surrounding_text = strdup (subclass->get_text_ref().c_str ()); m_impl->cursor_pos = subclass->get_cursor_ref(); - LOGD ("surrounding text: %s, %d", m_impl->surrounding_text, subclass->get_cursor_ref()); + SECURE_LOGD ("surrounding text: %s, %d", m_impl->surrounding_text, subclass->get_cursor_ref()); while (m_impl->need_update_surrounding_text > 0) { m_impl->need_update_surrounding_text--; m_impl->signal_update_surrounding_text (this, subclass->get_ic_ref(), @@ -976,7 +976,7 @@ HelperAgent::handle_message (MessageItem *message) free (m_impl->selection_text); m_impl->selection_text = strdup (subclass->get_text_ref().c_str ()); - LOGD ("selection text: %s", m_impl->selection_text); + SECURE_LOGD ("selection text: %s", m_impl->selection_text); while (m_impl->need_update_selection_text > 0) { m_impl->need_update_selection_text--; @@ -1171,7 +1171,7 @@ HelperAgent::handle_message (MessageItem *message) if (!(subclass->get_key_ref().get_key_string().compare("KeyRelease+XF86Back") == 0 || subclass->get_key_ref().get_key_string().compare("XF86Back") == 0)) { ret = m_impl->si->process_key_event (subclass->get_key_ref()); - LOGD("imengine(%s) process key %d return %d", m_impl->si->get_factory_uuid().c_str(), + SECURE_LOGD ("imengine(%s) process key %d return %d", m_impl->si->get_factory_uuid().c_str(), subclass->get_key_ref().code, ret); } }