Fix incorrect log messages 29/216529/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Mon, 28 Oct 2019 05:45:41 +0000 (14:45 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Mon, 28 Oct 2019 05:45:41 +0000 (14:45 +0900)
Change-Id: I5722be377ae9e07f7ab2fa1cba7770091613d141

src/multi_assistant_dbus_server.c

index 16ec6c8..0d00f3e 100644 (file)
@@ -428,7 +428,7 @@ int ma_service_dbus_start_streaming_audio_data(DBusConnection* conn, DBusMessage
                dbus_error_free(&err);
                ret = -1; //MAS_ERROR_OPERATION_FAILED;
        } else {
-               MAS_LOGD("[IN] mas send start streaming : pid(%d), result(%d)", pid, type);
+               MAS_LOGD("[IN] mas send start streaming : pid(%d), type(%d)", pid, type);
                ret =  mas_client_start_streaming_audio_data(pid, type);
        }
 
@@ -459,7 +459,7 @@ int ma_service_dbus_stop_streaming_audio_data(DBusConnection* conn, DBusMessage*
                dbus_error_free(&err);
                ret = -1; //MAS_ERROR_OPERATION_FAILED;
        } else {
-               MAS_LOGD("[IN] mas stop streaming : pid(%d), result(%d)", pid, type);
+               MAS_LOGD("[IN] mas stop streaming : pid(%d), type(%d)", pid, type);
                ret =  mas_client_stop_streaming_audio_data(pid, type);
        }
 
@@ -490,7 +490,7 @@ int ma_service_dbus_update_voice_feedback_state(DBusConnection* conn, DBusMessag
                dbus_error_free(&err);
                ret = -1; //MAS_ERROR_OPERATION_FAILED;
        } else {
-               MAS_LOGD("[IN] mas update voice feedback : pid(%d), result(%d)", pid, state);
+               MAS_LOGD("[IN] mas update voice feedback : pid(%d), state(%d)", pid, state);
                ret =  mas_client_update_voice_feedback_state(pid, state);
        }