aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-17 23:57:53 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-17 23:57:53 +0100
commit834b89547bfcfa597db71c63925136236cf147aa (patch)
tree43d4e72ecebad1b96b0ce51ab6f4eb9ae580c3cf
parent87a8cd0a131225833fa75e15ea41cb22ccb1656f (diff)
downloadwallet-core-834b89547bfcfa597db71c63925136236cf147aa.tar.xz
remove debug log
-rw-r--r--src/query.ts1
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 = () => {