diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-17 23:57:53 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-17 23:57:53 +0100 |
commit | 834b89547bfcfa597db71c63925136236cf147aa (patch) | |
tree | 43d4e72ecebad1b96b0ce51ab6f4eb9ae580c3cf | |
parent | 87a8cd0a131225833fa75e15ea41cb22ccb1656f (diff) |
remove debug log
-rw-r--r-- | src/query.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/query.ts b/src/query.ts index a284ef1b7..f3ce0d764 100644 --- a/src/query.ts +++ b/src/query.ts @@ -281,7 +281,6 @@ class QueryStreamIndexJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> { f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); let s = tx.objectStore(this.storeName).index(this.indexName); let req = s.openCursor(IDBKeyRange.only(this.key(value))); req.onsuccess = () => { |