From 26b30a462ad373d4b5188362ba2e4f6adad0674d Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 20 Jun 2023 15:10:51 +0200 Subject: wallet-core: be less spammy with self-transitions and logging --- packages/taler-wallet-core/src/operations/withdraw.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/taler-wallet-core/src/operations/withdraw.ts') diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index dd07bdebc..118084197 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -1199,14 +1199,14 @@ async function queryReserve( ); reserveUrl.searchParams.set("timeout_ms", "30000"); - logger.info(`querying reserve status via ${reserveUrl.href}`); + logger.trace(`querying reserve status via ${reserveUrl.href}`); const resp = await ws.http.fetch(reserveUrl.href, { timeout: getReserveRequestTimeout(withdrawalGroup), cancellationToken, }); - logger.info(`reserve status code: HTTP ${resp.status}`); + logger.trace(`reserve status code: HTTP ${resp.status}`); const result = await readSuccessResponseJsonOrErrorCode( resp, @@ -1214,7 +1214,7 @@ async function queryReserve( ); if (result.isError) { - logger.info( + logger.trace( `got reserve status error, EC=${result.talerErrorResponse.code}`, ); if ( -- cgit v1.2.3