aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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 = () => {