From 663a4138af54c1d7e80580911bfab4849e38cdec Mon Sep 17 00:00:00 2001 From: Suyeon Hwang Date: Fri, 2 Dec 2016 17:45:58 +0900 Subject: [PATCH] Remove logs in request_hello Change-Id: Ice5648df7b20b08bce26b0462f2c881e60d9fd64 Signed-off-by: Suyeon Hwang --- client/tts_dbus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/tts_dbus.c b/client/tts_dbus.c index b0ab133..d005363 100644 --- a/client/tts_dbus.c +++ b/client/tts_dbus.c @@ -296,7 +296,7 @@ int tts_dbus_request_hello(int uid) msg = __tts_dbus_make_message(uid, TTS_METHOD_HELLO); if (dbus_error_is_set(&err)) { - SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts dbus log : %s", err); +// SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts dbus log : %s", err); dbus_error_free(&err); } @@ -311,14 +311,14 @@ int tts_dbus_request_hello(int uid) result_msg = dbus_connection_send_with_reply_and_block(g_conn_sender, msg, HELLO_WAITING_TIME, &err); dbus_message_unref(msg); if (dbus_error_is_set(&err)) { - SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts dbus log : %s", err); +// SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts dbus log : %s", err); dbus_error_free(&err); } if (NULL != result_msg) { dbus_message_unref(result_msg); - SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts hello"); +// SLOG(LOG_DEBUG, TAG_TTSC, "<<<< tts hello"); result = 0; } else { result = TTS_ERROR_TIMED_OUT; -- 2.7.4