diff --git a/src/audio.cpp b/src/audio.cpp index f7727ab6..9eb1e01c 100644 --- a/src/audio.cpp +++ b/src/audio.cpp @@ -77,12 +77,16 @@ namespace audio { return; } if (astr->type == STREAM_TYPE_MONO) { + spdlog::warn("=> Stopping monoDynSplit"); astr->monoDynSplit->stop(); } else { + spdlog::warn("=> Stopping stereoDynSplit"); astr->stereoDynSplit->stop(); } + spdlog::warn("=> Stopping audio"); astr->audio->stop(); + spdlog::warn("=> Done"); astr->running = false; }