less logging

This commit is contained in:
Johannes Pohl 2016-11-25 15:33:34 +01:00
parent 8cf069642d
commit 712dbe9937
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ void CoreAudioPlayer::playerCallback(AudioQueueRef queue, AudioQueueBufferRef bu
char *buffer = (char*)bufferRef->mAudioData;
if (!pubStream_->getPlayerChunk(buffer, delay, frames_))
{
logO << "Failed to get chunk. Playing silence.\n";
// logO << "Failed to get chunk. Playing silence.\n";
memset(buffer, 0, buff_size_);
}
else

View file

@ -207,7 +207,7 @@ bool Stream::getPlayerChunk(void* outputBuffer, const cs::usec& outputBufferDacT
if (!chunk_ && !chunks_.try_pop(chunk_, outputBufferDacTime))
{
logO << "no chunks available\n";
//logO << "no chunks available\n";
sleep_ = cs::usec(0);
return false;
}