taler-typescript-core

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

commit 4891c4c7ceec46781fa2d7b7b5a3347616587681
parent 44dcfb379005097e6337754f8bf8ff267e5c8deb
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 12 Aug 2020 21:11:54 +0530

logging

Diffstat:
Mpackages/taler-wallet-core/src/operations/refund.ts | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/packages/taler-wallet-core/src/operations/refund.ts b/packages/taler-wallet-core/src/operations/refund.ts @@ -470,6 +470,7 @@ async function processPurchaseQueryRefundImpl( return; } + const requestUrl = new URL( `orders/${purchase.contractData.orderId}`, purchase.contractData.merchantBaseUrl, @@ -479,6 +480,8 @@ async function processPurchaseQueryRefundImpl( purchase.contractData.contractTermsHash, ); + logger.trace(`making refund request to ${requestUrl.href}`); + const request = await ws.http.get(requestUrl.href); logger.trace("got json", JSON.stringify(await request.json(), undefined, 2));