# HG changeset patch # User drewp@bigasterisk.com # Date 1683576359 25200 # Node ID 27fad20dc10188f0a06a38ed0733cec4ba1375fd # Parent 2ad4784c0d6cf9244e056d32a2d45d78d05873ba rm logging diff -r 2ad4784c0d6c -r 27fad20dc101 src/MultiStore.ts --- a/src/MultiStore.ts Mon May 08 13:05:48 2023 -0700 +++ b/src/MultiStore.ts Mon May 08 13:05:59 2023 -0700 @@ -30,7 +30,6 @@ this.stores.push(s.store); const p = new Patch(); // todo s.sourceGraphChanged.subscribe((p) => { - console.log("patchlife1: "); this.sourceGraphDataChanged(p); // todo }); } @@ -40,7 +39,6 @@ } sourceGraphDataChanged(p: Patch) { - console.log("patchlife2: multistore saw a graph change", p); this.tempCombinedGraph = new Store(); for (let st of this.stores) { @@ -48,7 +46,6 @@ this.tempCombinedGraph.addQuad(q); } } - console.log("patchlife3: tempgraph is rebuilt"); this.graphChanged.emit(p); }