Skip to content

Commit 134bbde

Browse files
committed
move the falling behind warning back to println but comment out
1 parent eaaa6c4 commit 134bbde

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/deluge/processing/engines/audio_engine.cpp

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -402,13 +402,15 @@ void routine() {
402402
#define MINSAMPLES 16
403403

404404
smoothedSamples = numSamples;
405-
406-
if (numSamplesLastTime < numSamples) {
407-
logAction("rendered ");
408-
logAction(numSamplesLastTime);
409-
logAction(" samples but output ");
410-
logAction(numSamples);
411-
}
405+
//this is sometimes good for debugging but super spammy
406+
//audiolog doesn't work because the render that notices the failure
407+
//is one after the render with the problem
408+
// if (numSamplesLastTime < numSamples) {
409+
// Debug::println("rendered ");
410+
// Debug::println(numSamplesLastTime);
411+
// Debug::println(" samples but output ");
412+
// Debug::println(numSamples);
413+
// }
412414

413415
// Consider direness and culling - before increasing the number of samples
414416
int32_t numSamplesLimit = 40; //storageManager.devVarC;

0 commit comments

Comments
 (0)