Use secure log 72/251472/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 Jan 2021 06:10:37 +0000 (15:10 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 Jan 2021 06:10:37 +0000 (15:10 +0900)
Change-Id: Id915ec5980e081e1729f6c127c9ce7bfa64aaa5d
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
inputmethod/src/inputmethod.cpp

index 47dfea9..77d0a53 100644 (file)
@@ -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;