From 9a12e9d833760e7f1a9f11c009ccd7f6f63dbf08 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Sun, 8 Nov 2015 20:24:59 +1000 Subject: [PATCH] Remove extraneous logging --- js/SoundManager.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/SoundManager.js b/js/SoundManager.js index f42016a..63fd15a 100644 --- a/js/SoundManager.js +++ b/js/SoundManager.js @@ -380,10 +380,6 @@ SoundManager.prototype.attachVisualiser = function() { // Only go up to 22KHz var maxBinLog = Math.floor(22000/binWidth); var logBins = this.vBars - this.linBins; - console.log("Going to compress", this.maxBinLin, - "bins into", this.linBins, "linear bins"); - console.log("Going to compress", maxBinLog-this.linBins, - "bins into", logBins, "logarithmic bins"); var logLow = Math.log2(2000); var logDiff = Math.log2(22000) - logLow;