commit 1c3e9473fd81761d01fafce1ddce8f3f80d35385
parent 64e78d03a117fffeb18e18154d9028a2532285a5
Author: Florian Dold <florian@dold.me>
Date: Mon, 4 Sep 2023 14:25:06 +0200
-remove bogus logging
Diffstat:
2 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/packages/taler-harness/src/harness/harness.ts b/packages/taler-harness/src/harness/harness.ts
@@ -1407,9 +1407,7 @@ export class MerchantApiClient {
}
async getPrivateInstanceInfo(): Promise<any> {
- console.log(this.makeAuthHeader());
const url = new URL("private", this.baseUrl);
- logger.info(`request url ${url.href}`);
const resp = await this.httpClient.fetch(url.href, {
method: "GET",
headers: this.makeAuthHeader(),
@@ -1418,7 +1416,6 @@ export class MerchantApiClient {
}
async getPrivateTipReserves(): Promise<TippingReserveStatus> {
- console.log(this.makeAuthHeader());
const url = new URL("private/reserves", this.baseUrl);
const resp = await this.httpClient.fetch(url.href, {
method: "GET",
diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts
@@ -402,7 +402,6 @@ deploymentCli
);
const res = await merchantClient.getPrivateInstanceInfo();
- console.log(res);
const tipRes = await merchantClient.getPrivateTipReserves();
console.log(j2s(tipRes));