From: Jihoon Kim Date: Thu, 14 Jan 2021 06:10:37 +0000 (+0900) Subject: Use secure log X-Git-Tag: submit/tizen/20210201.101507~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=951811f6dc109357f58e31fc6d951b363f8fa403;p=platform%2Fcore%2Fapi%2Finputmethod.git Use secure log Change-Id: Id915ec5980e081e1729f6c127c9ce7bfa64aaa5d Signed-off-by: Jihoon Kim --- diff --git a/inputmethod/src/inputmethod.cpp b/inputmethod/src/inputmethod.cpp index 47dfea9..77d0a53 100644 --- a/inputmethod/src/inputmethod.cpp +++ b/inputmethod/src/inputmethod.cpp @@ -1412,7 +1412,7 @@ EXPORT_API int ime_set_selection(int start, int end) retVal = _check_privilege(); if (retVal != IME_ERROR_NONE) return retVal; - LOGI("start: %d, end : %d", start, end); + SECURE_LOGI("start: %d, end : %d", start, end); g_core.set_selection(start, end); return IME_ERROR_NONE; @@ -1780,7 +1780,7 @@ EXPORT_API int ime_commit_content(const char *content, const char *description, } //LCOV_EXCL_START - LOGI("content : '%s', description : '%s', mime_type : '%s'", content, description, mime_type); + SECURE_LOGI("content : '%s', description : '%s', mime_type : '%s'", content, description, mime_type); g_core.commit_content(content, description, mime_type); return IME_ERROR_NONE; @@ -2358,11 +2358,9 @@ EXPORT_API int ime_event_set_optimization_hint_set_cb(ime_optimization_hint_set_ return IME_ERROR_INVALID_PARAMETER; } - LOGD(""); retVal = _check_privilege(); if (retVal != IME_ERROR_NONE) return retVal; - LOGD(""); g_event_callback.optimization_hint_set = callback_func; g_event_callback.optimization_hint_set_user_data = user_data;