aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cubeb_aaudio.cpp
diff options
context:
space:
mode:
authorPaul Adenot <[email protected]>2023-07-25 17:00:12 +0200
committerPaul Adenot <[email protected]>2023-07-26 14:02:22 +0200
commit31d6a2b0f2eabec2f4c660968c9e0f299367e209 (patch)
tree82640c47bc35585ed6beb598c99e04cd64e0d515 /src/cubeb_aaudio.cpp
parenteef055ab2127bce96ed1a5a06a287f2a2abaa9a9 (diff)
downloadcubeb-31d6a2b0f2eabec2f4c660968c9e0f299367e209.tar.gz
cubeb-31d6a2b0f2eabec2f4c660968c9e0f299367e209.zip
AAudio: Fix log level when stopping a stream
Diffstat (limited to 'src/cubeb_aaudio.cpp')
-rw-r--r--src/cubeb_aaudio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cubeb_aaudio.cpp b/src/cubeb_aaudio.cpp
index d220ff7..ac37814 100644
--- a/src/cubeb_aaudio.cpp
+++ b/src/cubeb_aaudio.cpp
@@ -1385,7 +1385,7 @@ aaudio_stream_stop_locked(cubeb_stream * stm, lock_guard<mutex>& lock)
stream_state state = stm->state.load();
int istate = stm->istream ? WRAP(AAudioStream_getState)(stm->istream) : 0;
int ostate = stm->ostream ? WRAP(AAudioStream_getState)(stm->ostream) : 0;
- LOGV("STOPPING stream %p: %d (%d %d)", (void *)stm, state, istate, ostate);
+ LOG("STOPPING stream %p: %d (%d %d)", (void *)stm, state, istate, ostate);
switch (state) {
case stream_state::STOPPED: