diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-19 21:24:39 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-19 21:24:39 +0100 |
commit | 4f7a130ebc2da6767e9db161ddf04b243dc2d0e3 (patch) | |
tree | 926dbf7d1df12f2bd3f30eb62ff21c2848fa483e /src/query.ts | |
parent | 1357271717109f90ae510e3cc2d1ecaa94e55336 (diff) |
remove debug log
Diffstat (limited to 'src/query.ts')
-rw-r--r-- | src/query.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/query.ts b/src/query.ts index 2c5a6002f..30633b0af 100644 --- a/src/query.ts +++ b/src/query.ts @@ -316,7 +316,6 @@ class QueryStreamIndexJoinLeft<T, S> extends QueryStreamBase<JoinLeftResult<T, S f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); const s = tx.objectStore(this.storeName).index(this.indexName); const req = s.openCursor(IDBKeyRange.only(this.key(value))); let gotMatch = false; @@ -356,7 +355,6 @@ class QueryStreamKeyJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> { f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); let s = tx.objectStore(this.storeName); let req = s.openCursor(IDBKeyRange.only(this.key(value))); req.onsuccess = () => { |