changeset 141:27fad20dc101

rm logging
author drewp@bigasterisk.com
date Mon, 08 May 2023 13:05:59 -0700
parents 2ad4784c0d6c
children 845ba03729f9
files src/MultiStore.ts
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);
   }