Mercurial > hg > svapp
diff framework/MainWindowBase.cpp @ 786:1089d65c585d tip
Divert some debug output away from stderr
author | Chris Cannam |
---|---|
date | Fri, 14 Aug 2020 10:46:44 +0100 |
parents | 7bded7599874 |
children |
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp Wed Aug 05 16:05:51 2020 +0100 +++ b/framework/MainWindowBase.cpp Fri Aug 14 10:46:44 2020 +0100 @@ -2603,7 +2603,7 @@ m_audioIO = breakfastquay::AudioFactory:: createCallbackIO(m_recordTarget, source, preference, errorString); if (m_audioIO) { - SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl; + SVDEBUG << "MainWindowBase::createAudioIO: Suspending on creation" << endl; m_audioIO->suspend(); // start in suspended state m_playSource->setSystemPlaybackTarget(m_audioIO); } else { @@ -2618,7 +2618,7 @@ m_playTarget = breakfastquay::AudioFactory:: createCallbackPlayTarget(source, preference, errorString); if (m_playTarget) { - SVCERR << "MainWindowBase::createAudioIO: Suspending on creation" << endl; + SVDEBUG << "MainWindowBase::createAudioIO: Suspending on creation" << endl; m_playTarget->suspend(); // start in suspended state m_playSource->setSystemPlaybackTarget(m_playTarget); } @@ -3770,7 +3770,7 @@ m_playSource->stop(); - SVCERR << "MainWindowBase::stop: suspending" << endl; + SVDEBUG << "MainWindowBase::stop: suspending" << endl; if (m_audioIO) m_audioIO->suspend(); else if (m_playTarget) m_playTarget->suspend();