From 00b3041d87d4368b18731fc2a6fb33faecc10a93 Mon Sep 17 00:00:00 2001 From: Kyle Kingsbury Date: Tue, 20 May 2014 15:33:23 -0700 Subject: [PATCH] grid: remove logging --- lib/riemann/dash/public/views/grid.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/riemann/dash/public/views/grid.js b/lib/riemann/dash/public/views/grid.js index cb50d2b..515a91d 100644 --- a/lib/riemann/dash/public/views/grid.js +++ b/lib/riemann/dash/public/views/grid.js @@ -345,7 +345,6 @@ // Add an event. Grid.prototype.add = function(e) { - console.log("Adding", e); var newEvent = this.saveEvent(e); var newMax = this.updateMax(e); @@ -395,16 +394,11 @@ // Accept an event. Grid.prototype.update = function(e) { - console.log("Update", e); if (e.state === "expired") { this.remove(e); } else { this.add(e); } - console.log("elCache", this.elCache); - console.log("events", this.events); - console.log("rows", this.rows); - console.log("cols", this.cols); }; Grid.prototype.reflow = function() {