summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-02-15 22:19:05 +0100
committerFlorian Dold <florian@dold.me>2024-02-15 22:19:05 +0100
commita754f92d7018924b858330da878366b89a0b9a65 (patch)
tree53fe24db7b16fabd9393b3b57251c392d350b920 /packages/taler-wallet-core/src/operations
parent70a803038f1cbe05dc4779bdd87376fd073421be (diff)
downloadwallet-core-a754f92d7018924b858330da878366b89a0b9a65.tar.gz
wallet-core-a754f92d7018924b858330da878366b89a0b9a65.tar.bz2
wallet-core-a754f92d7018924b858330da878366b89a0b9a65.zip
fix logging
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r--packages/taler-wallet-core/src/operations/deposits.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/deposits.ts b/packages/taler-wallet-core/src/operations/deposits.ts
index 38b5d43f0..decef7375 100644
--- a/packages/taler-wallet-core/src/operations/deposits.ts
+++ b/packages/taler-wallet-core/src/operations/deposits.ts
@@ -942,7 +942,7 @@ async function processDepositGroupPendingDeposit(
// Check for cancellation before making network request.
cancellationToken?.throwIfCancelled();
const url = new URL(`batch-deposit`, exchangeUrl);
- logger.info(`depositing to ${url}`);
+ logger.info(`depositing to ${url.href}`);
logger.trace(`deposit request: ${j2s(batchReq)}`);
const httpResp = await ws.http.fetch(url.href, {
method: "POST",