aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/query.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/query.ts b/src/query.ts
index 5426b9c06..7c9390467 100644
--- a/src/query.ts
+++ b/src/query.ts
@@ -465,7 +465,6 @@ class QueryStreamIndexJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> {
return;
}
const joinKey = this.key(value);
- console.log("***** JOINING ON", joinKey);
const s = tx.objectStore(this.storeName).index(this.indexName);
const req = s.openCursor(IDBKeyRange.only(joinKey));
req.onsuccess = () => {