commit 1bf9dafb3733baaff50b34a668f5ae1f1b503252
parent 979a47093c5117d5ae8a4fcd4851ad1f5b1d9fbe
Author: Florian Dold <florian@dold.me>
Date: Sun, 30 Jun 2024 19:06:19 +0200
-more logging
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-util/src/http-impl.qtart.ts b/packages/taler-util/src/http-impl.qtart.ts
@@ -72,7 +72,7 @@ export class HttpLibImpl implements HttpRequestLibrary {
async fetch(url: string, opt?: HttpRequestOptions): Promise<HttpResponse> {
const method = (opt?.method ?? "GET").toUpperCase();
- logger.trace(`Requesting ${method} ${url}`);
+ logger.trace(`Requesting (Hi Marc) ${method} ${url}`);
const parsedUrl = new URL(url);
if (this.throttlingEnabled && this.throttle.applyThrottle(url)) {