taler-typescript-core

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

commit e872605f69af82468407c828d423bd561fae2c15
parent 17f9935fd03edbe2294e46958f48a0568b853db3
Author: Florian Dold <florian@dold.me>
Date:   Wed,  8 May 2024 15:21:12 +0200

-cull excessive logging

Diffstat:
Mpackages/taler-wallet-core/src/exchanges.ts | 1-
Mpackages/taler-wallet-core/src/withdraw.ts | 2--
2 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/packages/taler-wallet-core/src/exchanges.ts b/packages/taler-wallet-core/src/exchanges.ts @@ -1549,7 +1549,6 @@ export async function updateExchangeFromUrlHandler( r.updateStatus = ExchangeEntryDbUpdateStatus.Ready; r.cachebreakNextUpdate = false; await tx.exchanges.put(r); - logger.info(`putting new exchange details in DB: ${j2s(newDetails)}`); const drRowId = await tx.exchangeDetails.put(newDetails); checkDbInvariant(typeof drRowId.key === "number"); diff --git a/packages/taler-wallet-core/src/withdraw.ts b/packages/taler-wallet-core/src/withdraw.ts @@ -839,8 +839,6 @@ export async function getBankWithdrawalInfo( } const { body: status } = resp; - logger.info(`bank withdrawal operation status: ${j2s(status)}`); - return { operationId: uriResult.withdrawalOperationId, apiBaseUrl: uriResult.bankIntegrationApiBaseUrl,