From 834b89547bfcfa597db71c63925136236cf147aa Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 17 Nov 2016 23:57:53 +0100 Subject: [PATCH] remove debug log --- src/query.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/query.ts b/src/query.ts index a284ef1b7..f3ce0d764 100644 --- a/src/query.ts +++ b/src/query.ts @@ -281,7 +281,6 @@ class QueryStreamIndexJoin extends QueryStreamBase> { f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); let s = tx.objectStore(this.storeName).index(this.indexName); let req = s.openCursor(IDBKeyRange.only(this.key(value))); req.onsuccess = () => {