Use secure log 41/151141/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 20 Sep 2017 04:24:14 +0000 (13:24 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 20 Sep 2017 04:24:14 +0000 (13:24 +0900)
Change-Id: I1d28954f150fc557ef9cd2db6d4075e4e226061d
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/SttFeedback.cpp
src/SttManager.cpp
src/ise-stt-mode.cpp
src/ise.cpp

index 129350b..c9ed830 100644 (file)
@@ -54,7 +54,7 @@ void SttFeedback::OnResult(
     } else {
         for (std::vector<std::string>::iterator result = results.begin(); result != results.end(); std::advance(result, 1)) {
             if (!result->empty() && result->length() > 0) {
-                LOGD("%s\n", result->c_str());
+                SECURE_LOGD("%s\n", result->c_str());
                 switch (event){
                     case STT_RESULT_EVENT_FINAL_RESULT:
                         LOGD("STT_RESULT_EVENT_FINAL_RESULT");
index 199bfe9..a5345d9 100644 (file)
@@ -246,7 +246,7 @@ void SttManager::PrintResultState(stt_result_event_e result_type)
             result = "UNKNOWN";
             break;
     }
-    LOGD("result type : %s", result.c_str());
+    SECURE_LOGD("result type : %s", result.c_str());
 }
 
 void SttManager::on_result(
index 2b6c3bf..d9acb3e 100644 (file)
@@ -54,7 +54,7 @@ static void set_guide_text(VoiceData *vd, const char* text, bool translatable =
 void voice_result_string_flush()
 {
     if (my_voicedata && my_voicedata->partial_result) {
-        LOGD("***** result_text : %s *******", my_voicedata->partial_result);
+        SECURE_LOGD("***** result_text : %s *******", my_voicedata->partial_result);
         const int BUF_LEN = strlen(my_voicedata->partial_result) + 1;
         char retStr[BUF_LEN] = {0};
         snprintf(retStr, BUF_LEN, "%s", my_voicedata->partial_result);
@@ -68,7 +68,7 @@ void send_result_text(void *data)
         return;
 
     VoiceData* voicedata = (VoiceData*)data;
-    LOGD("result_text = %s", voicedata->partial_result);
+    SECURE_LOGD("result_text = %s", voicedata->partial_result);
     ise_update_preedit_string(voicedata->partial_result);
 }
 
@@ -81,7 +81,7 @@ void voice_get_string(const char *keyValue, VoiceData *voicedata)
 
     strbuf = elm_entry_utf8_to_markup(keyValue);
 
-    LOGD("text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result);
+    SECURE_LOGD("text : %s, voicedata->partial_result=%s", strbuf, voicedata->partial_result);
 
     if (strbuf) {
         if (voicedata->partial_result) { // partial_result is not Null so replace
index 115bb70..37cdf6c 100644 (file)
@@ -215,7 +215,7 @@ static void _input_smartreply_notify_cb(void *user_data)
                 reply = input_smartreply_get_nth_item(i, &type);
                 if (reply == NULL)
                     continue;
-                LOGD("SmartReply = [%d]%s", i, reply);
+                SECURE_LOGD("SmartReply = [%d] %s", i, reply);
                 candidate = reply;
                 if (candidate) {
                     candidate_strings.push_back(string(candidate));
@@ -530,7 +530,7 @@ on_input_mode_changed(const sclchar *key_value, sclulong key_event, sclint key_t
 
     if (g_ui) {
         if (key_value) {
-            LOGD("key_value : %s\n", key_value);
+            SECURE_LOGD("key_value : %s\n", key_value);
             if (strcmp(key_value, "CUR_LANG") == 0) {
                 g_keyboard_state.disable_force_latin = TRUE;
                 ret = _language_manager.select_current_language();
@@ -2241,7 +2241,7 @@ static void ime_app_language_requested_cb(void *user_data, char **lang_code)
 
 static void ime_app_surrounding_text_updated_cb(int context_id, const char *text, int cursor_pos, void *user_data)
 {
-    LOGD("surrounding text:%s, cursor=%d\n", text, cursor_pos);
+    SECURE_LOGD("surrounding text:%s, cursor=%d\n", text, cursor_pos);
     ime_delete_surrounding_text(-cursor_pos, strlen(text));
 }
 
@@ -2523,7 +2523,7 @@ static void ime_app_prediction_hint_set_cb(const char *prediction_hint, void *us
     char *hint = (char *)prediction_hint;
 
     if (!prediction_hint) return;
-    LOGD("prediction hint : %s\n", prediction_hint);
+    SECURE_LOGD("prediction hint : %s\n", prediction_hint);
 
     if (strlen(prediction_hint) > 0) {
         input_smartreply_init(caller_id, sender, hint);