chore: remove debug console.log calls from audio TS interop

This commit is contained in:
daniel-c-harvey
2026-06-04 18:40:45 -04:00
parent db8a44fc79
commit 034e9d5633
6 changed files with 0 additions and 47 deletions
@@ -36,7 +36,6 @@ export class SpectrumAnalyzer {
this.analyser.smoothingTimeConstant = 0.8;
this.dataArray = new Float32Array(this.analyser.frequencyBinCount);
console.log(`SpectrumAnalyzer initialized: fftSize=${this.fftSize}, bins=${this.analyser.frequencyBinCount}`);
return this.analyser;
}