taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 52f162a3ef601bcc9f6b6e1fcca0208c594053b8
parent a2e7335cab951d91e3b3d0e6202c3e917b80fe62
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 14 Nov 2019 17:18:20 +0100

remove more bad logging

Diffstat:
Msrc/query.ts | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git 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 = () => {