gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated: info -> trace


From: gnunet
Subject: [taler-wallet-core] branch master updated: info -> trace
Date: Tue, 28 Nov 2023 10:07:35 +0100

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

marc-stibane pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new d2231425a info -> trace
d2231425a is described below

commit d2231425a45d465308e753ac09a5115cbf88c3e9
Author: Marc Stibane <marc@taler.net>
AuthorDate: Tue Nov 28 10:07:25 2023 +0100

    info -> trace
---
 packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts | 6 +++---
 packages/taler-wallet-core/src/operations/withdraw.ts            | 2 +-
 packages/taler-wallet-core/src/util/coinSelection.ts             | 2 +-
 packages/taler-wallet-core/src/wallet.ts                         | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts 
b/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts
index db4b63657..6cbd6bf47 100644
--- a/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts
+++ b/packages/taler-wallet-core/src/operations/pay-peer-push-debit.ts
@@ -235,7 +235,7 @@ async function processPeerPushDebitCreateReserve(
     nonce: peerPushInitiation.contractEncNonce,
   };
 
-  logger.info(`encrypt contract request: ${j2s(encryptContractRequest)}`);
+  logger.trace(`encrypt contract request: ${j2s(encryptContractRequest)}`);
 
   const econtractResp = await ws.cryptoApi.encryptContractForMerge(
     encryptContractRequest,
@@ -261,7 +261,7 @@ async function processPeerPushDebitCreateReserve(
     econtract: econtractResp.econtract,
   };
 
-  logger.info(`request body: ${j2s(reqBody)}`);
+  logger.trace(`request body: ${j2s(reqBody)}`);
 
   const httpResp = await ws.http.fetch(createPurseUrl.href, {
     method: "POST",
@@ -471,7 +471,7 @@ async function processPeerPushDebitReady(
   ws: InternalWalletState,
   peerPushInitiation: PeerPushDebitRecord,
 ): Promise<TaskRunResult> {
-  logger.info("processing peer-push-debit pending(ready)");
+  logger.trace("processing peer-push-debit pending(ready)");
   const pursePub = peerPushInitiation.pursePub;
   const retryTag = constructTaskIdentifier({
     tag: PendingTaskType.PeerPushDebit,
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts 
b/packages/taler-wallet-core/src/operations/withdraw.ts
index a5a6bded8..4673e1f0b 100644
--- a/packages/taler-wallet-core/src/operations/withdraw.ts
+++ b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -2262,7 +2262,7 @@ async function processReserveBankStatus(
         r.wgInfo.bankInfo.timestampBankConfirmed = timestampPreciseToDb(now);
         r.status = WithdrawalGroupStatus.PendingQueryingStatus;
       } else {
-        logger.info("withdrawal: transfer not yet confirmed by bank");
+        logger.trace("withdrawal: transfer not yet confirmed by bank");
         r.wgInfo.bankInfo.confirmUrl = status.confirm_transfer_url;
         r.senderWire = status.sender_wire;
       }
diff --git a/packages/taler-wallet-core/src/util/coinSelection.ts 
b/packages/taler-wallet-core/src/util/coinSelection.ts
index 9506fff19..5928cd19b 100644
--- a/packages/taler-wallet-core/src/util/coinSelection.ts
+++ b/packages/taler-wallet-core/src/util/coinSelection.ts
@@ -369,7 +369,7 @@ export async function selectPayCoinsNew(
           selInfo.maxAge,
           CoinStatus.Fresh,
         ];
-        logger.info(`query: ${j2s(query)}`);
+        logger.trace(`query: ${j2s(query)}`);
         const coins =
           await tx.coins.indexes.byExchangeDenomPubHashAndAgeAndStatus.getAll(
             query,
diff --git a/packages/taler-wallet-core/src/wallet.ts 
b/packages/taler-wallet-core/src/wallet.ts
index 4472bdbad..ebdab97d1 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -511,7 +511,7 @@ async function runTaskLoop(
         if (!AbsoluteTime.isExpired(p.timestampDue)) {
           continue;
         }
-        logger.info(`running task ${p.id}`);
+        logger.trace(`running task ${p.id}`);
         await runTaskWithErrorReporting(ws, p.id, async () => {
           return await callOperationHandler(ws, p);
         });

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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