gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated (a2e7335c -> 25c68d44)


From: gnunet
Subject: [taler-wallet-core] branch master updated (a2e7335c -> 25c68d44)
Date: Thu, 14 Nov 2019 17:25:01 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a change to branch master
in repository wallet-core.

    from a2e7335c remove unconditional debug log
     new 52f162a3 remove more bad logging
     new 25c68d44 remove more bad logging

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/android/index.ts | 1 -
 src/query.ts         | 1 -
 src/wallet.ts        | 2 +-
 3 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/android/index.ts b/src/android/index.ts
index d3f5cd0d..b8bb77e0 100644
--- a/src/android/index.ts
+++ b/src/android/index.ts
@@ -203,7 +203,6 @@ export function installAndroidWalletListener() {
     }
 
     const respMsg = { result, id, operation, type: "response" };
-    console.log("sending message back", respMsg);
     sendMessage(JSON.stringify(respMsg));
   };
   // @ts-ignore
diff --git a/src/query.ts b/src/query.ts
index 5426b9c0..7c939046 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 = () => {
diff --git a/src/wallet.ts b/src/wallet.ts
index c73af906..bbeaca60 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -2355,7 +2355,7 @@ export class Wallet {
     tx.iter(Stores.reserves).fold(collectPaybacks, balanceStore);
     tx.iter(Stores.purchases).fold(collectPayments, balanceStore);
     await tx.finish();
-    console.log("computed balances:", balanceStore)
+    Wallet.enableTracing && console.log("computed balances:", balanceStore)
     return balanceStore;
   }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]