diff --git a/lib/aws-cloudwatch-statsd-backend.js b/lib/aws-cloudwatch-statsd-backend.js index 176e0d4..80b152e 100644 --- a/lib/aws-cloudwatch-statsd-backend.js +++ b/lib/aws-cloudwatch-statsd-backend.js @@ -113,7 +113,7 @@ CloudwatchBackend.prototype.flush = function(timestamp, metrics) { continue; if (this.config.whitelist && this.config.whitelist.length > 0 && this.config.whitelist.indexOf(key) == -1) { - console.log("Key (counter) " + key + " not in whitelist"); + // console.log("Key (counter) " + key + " not in whitelist"); continue; } @@ -141,7 +141,7 @@ CloudwatchBackend.prototype.flush = function(timestamp, metrics) { if (timers[key].length > 0) { if (this.config.whitelist && this.config.whitelist.length > 0 && this.config.whitelist.indexOf(key) == -1) { - console.log("Key (counter) " + key + " not in whitelist"); + // console.log("Key (counter) " + key + " not in whitelist"); continue; } @@ -197,7 +197,7 @@ CloudwatchBackend.prototype.flush = function(timestamp, metrics) { for (key in gauges) { if (this.config.whitelist && this.config.whitelist.length > 0 && this.config.whitelist.indexOf(key) == -1) { - console.log("Key (counter) " + key + " not in whitelist"); + // console.log("Key (counter) " + key + " not in whitelist"); continue; } @@ -224,7 +224,7 @@ CloudwatchBackend.prototype.flush = function(timestamp, metrics) { for (key in sets) { if (this.config.whitelist && this.config.whitelist.length > 0 && this.config.whitelist.indexOf(key) == -1) { - console.log("Key (counter) " + key + " not in whitelist"); + // console.log("Key (counter) " + key + " not in whitelist"); continue; }