From e7dcef6b7791db1537b8083b750ba9d50f373477 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Fri, 7 Dec 2018 16:20:06 +0900 Subject: [PATCH] Fix mismatch between log format and actual parameter Change-Id: I9d3fb5395446393afeec900b8f3b02a9f959d791 Signed-off-by: sungwook79.park --- src/voice-recorder.cpp | 2 +- src/w-input-stt-voice.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/voice-recorder.cpp b/src/voice-recorder.cpp index 0fb0d08..9c6a880 100644 --- a/src/voice-recorder.cpp +++ b/src/voice-recorder.cpp @@ -173,7 +173,7 @@ static void _recorder_stop(voice_recorder *recorder) if (recorder->recorder) { commitResult = recorder_commit(recorder->recorder); if (commitResult != RECORDER_ERROR_NONE) { - LOGD("recorder_commit failed Error [%d]", recorder_commit); + LOGD("recorder_commit failed Error"); } _main_file_register(recorder->file_path); } diff --git a/src/w-input-stt-voice.cpp b/src/w-input-stt-voice.cpp index 532f16e..00dbbfb 100755 --- a/src/w-input-stt-voice.cpp +++ b/src/w-input-stt-voice.cpp @@ -856,7 +856,7 @@ void on_initial_anim_press_cb(void *data, Evas_Object *obj, const char *emission int tempVal = vd->sttmanager->GetCurrent(); if(tempVal == STT_STATE_CREATED) { - PRINTFUNC(DLOG_WARN, "IGNORE TOUCH event before STT READY. STT is preparing", vd->state); + PRINTFUNC(DLOG_WARN, "IGNORE TOUCH event before STT READY. STT is preparing"); return; } -- 2.7.4