diff --git a/libraries/sceneGraph/WorldGraph.js b/libraries/sceneGraph/WorldGraph.js index 72eb6b738..e7bf3382d 100644 --- a/libraries/sceneGraph/WorldGraph.js +++ b/libraries/sceneGraph/WorldGraph.js @@ -39,7 +39,7 @@ class WorldGraph { this.compiledGraph.addDataFromSerializableGraph(knownGraphCopy); } - console.log(this.compiledGraph); + // console.log(this.compiledGraph); console.log('finished compiling graphs'); return this.compiledGraph; diff --git a/server.js b/server.js index 0245cd049..4cf808aec 100644 --- a/server.js +++ b/server.js @@ -1289,7 +1289,7 @@ async function getKnownSceneGraph(ip, port) { // 3. parse the results and add it as a known scene graph let thatSceneGraph = JSON.parse(response); console.log('Discovered scene graph from server ' + ip + ' with keys:'); - console.log(Object.keys(thatSceneGraph)); + // console.log(Object.keys(thatSceneGraph)); // 4. create a method to compile all known scene graphs with this server's graph to be visualized worldGraph.addKnownGraph(ip, thatSceneGraph);