Skip to content

Commit

Permalink
minimize scenegraph logging
Browse files Browse the repository at this point in the history
  • Loading branch information
benptc committed Sep 26, 2024
1 parent 0dd897e commit 5e62ba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/sceneGraph/WorldGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5e62ba2

Please sign in to comment.