remove debug log

This commit is contained in:
Florian Dold 2016-11-17 23:57:53 +01:00
parent 87a8cd0a13
commit 834b89547b

View File

@ -281,7 +281,6 @@ class QueryStreamIndexJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> {
f(true, undefined, tx); f(true, undefined, tx);
return; return;
} }
console.log("joining on", this.key(value));
let s = tx.objectStore(this.storeName).index(this.indexName); let s = tx.objectStore(this.storeName).index(this.indexName);
let req = s.openCursor(IDBKeyRange.only(this.key(value))); let req = s.openCursor(IDBKeyRange.only(this.key(value)));
req.onsuccess = () => { req.onsuccess = () => {