aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cubeb_aaudio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cubeb_aaudio.cpp')
-rw-r--r--src/cubeb_aaudio.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cubeb_aaudio.cpp b/src/cubeb_aaudio.cpp
index 6c0c3af..e00fd19 100644
--- a/src/cubeb_aaudio.cpp
+++ b/src/cubeb_aaudio.cpp
@@ -1109,8 +1109,7 @@ reinitialize_stream_locked(cubeb_stream * stm, lock_guard<mutex> & lock)
if (err != CUBEB_OK) {
aaudio_stream_destroy_locked(stm, lock);
- LOG("aaudio_stream_init_impl error while reiniting: %s",
- WRAP(AAudio_convertResultToText)(err));
+ LOG("aaudio_stream_init_impl error while reiniting");
stm->state.store(stream_state::ERROR);
return err;
}
@@ -1119,8 +1118,7 @@ reinitialize_stream_locked(cubeb_stream * stm, lock_guard<mutex> & lock)
err = aaudio_stream_start_locked(stm, lock);
if (err != CUBEB_OK) {
aaudio_stream_destroy_locked(stm, lock);
- LOG("aaudio_stream_start error while reiniting: %s",
- WRAP(AAudio_convertResultToText)(err));
+ LOG("aaudio_stream_start error while reiniting");
stm->state.store(stream_state::ERROR);
return err;
}