-remove bogus logging
This commit is contained in:
parent
64e78d03a1
commit
1c3e9473fd
@ -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",
|
||||
|
@ -402,7 +402,6 @@ deploymentCli
|
||||
);
|
||||
|
||||
const res = await merchantClient.getPrivateInstanceInfo();
|
||||
console.log(res);
|
||||
|
||||
const tipRes = await merchantClient.getPrivateTipReserves();
|
||||
console.log(j2s(tipRes));
|
||||
|
Loading…
Reference in New Issue
Block a user