summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-19 21:24:39 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-19 21:24:39 +0100
commit4f7a130ebc2da6767e9db161ddf04b243dc2d0e3 (patch)
tree926dbf7d1df12f2bd3f30eb62ff21c2848fa483e /src
parent1357271717109f90ae510e3cc2d1ecaa94e55336 (diff)
downloadwallet-core-4f7a130ebc2da6767e9db161ddf04b243dc2d0e3.tar.gz
wallet-core-4f7a130ebc2da6767e9db161ddf04b243dc2d0e3.tar.bz2
wallet-core-4f7a130ebc2da6767e9db161ddf04b243dc2d0e3.zip
remove debug log
Diffstat (limited to 'src')
-rw-r--r--src/query.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/query.ts b/src/query.ts
index 2c5a6002f..30633b0af 100644
--- a/src/query.ts
+++ b/src/query.ts
@@ -316,7 +316,6 @@ class QueryStreamIndexJoinLeft<T, S> extends QueryStreamBase<JoinLeftResult<T, S
f(true, undefined, tx);
return;
}
- console.log("joining on", this.key(value));
const s = tx.objectStore(this.storeName).index(this.indexName);
const req = s.openCursor(IDBKeyRange.only(this.key(value)));
let gotMatch = false;
@@ -356,7 +355,6 @@ class QueryStreamKeyJoin<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);
let req = s.openCursor(IDBKeyRange.only(this.key(value)));
req.onsuccess = () => {