From: Dan Vanderkam Date: Fri, 4 Sep 2009 01:43:49 +0000 (+0000) Subject: remove debug logging statements X-Git-Tag: v1.0.0~885 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=6c7857f049491fc57fb642f5bf5467cc5f1870cf;p=dygraphs.git remove debug logging statements --- diff --git a/dygraph.js b/dygraph.js index e49c935..9cec98e 100644 --- a/dygraph.js +++ b/dygraph.js @@ -794,7 +794,6 @@ DateGraph.prototype.numericTicks = function(minV, maxV) { var base_scale = Math.pow(10, i); for (var j = 0; j < mults.length; j++) { scale = base_scale * mults[j]; - console.log("i/j/scale: " + i + "/" + j + "/" + scale); low_val = Math.floor(minV / scale) * scale; high_val = Math.ceil(maxV / scale) * scale; nTicks = (high_val - low_val) / scale; @@ -804,9 +803,6 @@ DateGraph.prototype.numericTicks = function(minV, maxV) { } if (spacing > this.attrs_.pixelsPerYLabel) break; } - console.log("scale: " + scale); - console.log("low_val: " + low_val); - console.log("high_val: " + high_val); // Construct labels for the ticks var ticks = [];