diff --git a/js/lattice/Lattice.js b/js/lattice/Lattice.js
index 5728d63ffc69394133f922aa62200fe002822c0f..82a8e6db31e198f5d94b16bd77ceae6263607bb8 100644
--- a/js/lattice/Lattice.js
+++ b/js/lattice/Lattice.js
@@ -80,12 +80,8 @@ define(['underscore', 'backbone', 'appState', 'globals', 'plist', 'three', 'thre
         },
 
         addCellAtIndex: function(indices, noRender, noCheck){//no render no check from fill
-            console.log(indices);
 
-            console.log(this.get("cellsMin"));
-            console.log(this.get("cellsMax"));
             if (!noCheck || noCheck === undefined) this.checkForMatrixExpansion(this.sparseCells, indices, indices);
-            console.log(this.sparseCells);
 
             var index = (new THREE.Vector3()).subVectors(indices, this.get("cellsMin") || indices);
             if (!this.sparseCells[index.x][index.y][index.z]) {