diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-11-14 17:18:20 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-11-14 17:18:20 +0100 |
commit | 52f162a3ef601bcc9f6b6e1fcca0208c594053b8 (patch) | |
tree | daf0f70f378b8a9bc50a05e6688f76366153eb62 /src | |
parent | a2e7335cab951d91e3b3d0e6202c3e917b80fe62 (diff) |
remove more bad logging
Diffstat (limited to 'src')
-rw-r--r-- | src/query.ts | 1 |
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 = () => { |