remove debugging statements
diff --git a/planetstack/core/static/planetstack_graphs.js b/planetstack/core/static/planetstack_graphs.js
index 5f7977c..0c099a9 100644
--- a/planetstack/core/static/planetstack_graphs.js
+++ b/planetstack/core/static/planetstack_graphs.js
@@ -31,8 +31,6 @@
 }
 
 function showLine_psg(container, dt, options) {
-    console.log("showline_psg");
-
     var base_options = {
             'width': 520,
             'height': 300,
@@ -111,8 +109,6 @@
             label: dt.getColumnLabel(xColumn),
             aggregation: aggFunc}]);
 
-        console.log(groupedData1.getColumnRange(0))
-        console.log(groupedData1.getColumnRange(1))
         showLine_psg(container, groupedData1, options);
     });