From 50fcf4ba8f94474757897af1d74712e98b5057bd Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 7 Jan 2015 11:06:36 -0800 Subject: [PATCH] Remove output buffer starvation log warnings --- interface/src/Audio.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/interface/src/Audio.cpp b/interface/src/Audio.cpp index 58b74774bf..19044820a8 100644 --- a/interface/src/Audio.cpp +++ b/interface/src/Audio.cpp @@ -953,8 +953,6 @@ bool Audio::switchInputToAudioDevice(const QAudioDeviceInfo& inputDeviceInfo) { void Audio::outputNotify() { int recentUnfulfilled = _audioOutputIODevice.getRecentUnfulfilledReads(); if (recentUnfulfilled > 0) { - qDebug() << "WARNING --- WE HAD at least:" << recentUnfulfilled << "recently unfulfilled readData() calls"; - if (_outputStarveDetectionEnabled) { quint64 now = usecTimestampNow() / 1000; quint64 dt = now - _outputStarveDetectionStartTimeMsec;