remove more bad logging

This commit is contained in:
Florian Dold 2019-11-14 17:18:20 +01:00
parent a2e7335cab
commit 52f162a3ef
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -465,7 +465,6 @@ class QueryStreamIndexJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> {
return; return;
} }
const joinKey = this.key(value); const joinKey = this.key(value);
console.log("***** JOINING ON", joinKey);
const s = tx.objectStore(this.storeName).index(this.indexName); const s = tx.objectStore(this.storeName).index(this.indexName);
const req = s.openCursor(IDBKeyRange.only(joinKey)); const req = s.openCursor(IDBKeyRange.only(joinKey));
req.onsuccess = () => { req.onsuccess = () => {