diff options
author | Paul Adenot <[email protected]> | 2023-07-25 17:00:12 +0200 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2023-07-26 13:52:43 +0200 |
commit | 090b587d0ba03dbba4851968eae0c3e24eedcf21 (patch) | |
tree | d8cd904b1758c6073fc4beb53d67530e5018338c | |
parent | c201caab3a8719880829a4a7358a39b44d0b0d02 (diff) | |
download | cubeb-090b587d0ba03dbba4851968eae0c3e24eedcf21.tar.gz cubeb-090b587d0ba03dbba4851968eae0c3e24eedcf21.zip |
AAudio: Fix log level when stopping a stream
-rw-r--r-- | src/cubeb_aaudio.cpp | 2 |
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: |