File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
src/deluge/processing/engines Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -402,13 +402,15 @@ void routine() {
402
402
#define MINSAMPLES 16
403
403
404
404
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
+ // }
412
414
413
415
// Consider direness and culling - before increasing the number of samples
414
416
int32_t numSamplesLimit = 40 ; // storageManager.devVarC;
You can’t perform that action at this time.
0 commit comments