aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-10-05 18:31:56 +0200
committerFlorian Dold <florian@dold.me>2022-10-05 18:31:56 +0200
commit957f9a5efb26194a7911cdaf722502ba09e5bd58 (patch)
treed7edfb20814d8f9cf418457de0a3ff86c7690308 /packages/taler-wallet-cli
parent99ace8b7d24416f2b184d66006c89b61935e132e (diff)
downloadwallet-core-957f9a5efb26194a7911cdaf722502ba09e5bd58.tar.xz
wallet-core: fix default auditor/exchange loading logic
Diffstat (limited to 'packages/taler-wallet-cli')
-rw-r--r--packages/taler-wallet-cli/src/index.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts
index c1afbe15c..b55231b79 100644
--- a/packages/taler-wallet-cli/src/index.ts
+++ b/packages/taler-wallet-cli/src/index.ts
@@ -255,9 +255,9 @@ async function withWallet<T>(
console.error("Error details:", JSON.stringify(ed, undefined, 2));
process.exit(1);
} finally {
- logger.info("operation with wallet finished, stopping");
+ logger.trace("operation with wallet finished, stopping");
wallet.stop();
- logger.info("stopped wallet");
+ logger.trace("stopped wallet");
}
}
@@ -495,6 +495,7 @@ walletCli
talerWithdrawUri: uri,
},
);
+ console.log("accept withdrawal response", res);
}
break;
default:
@@ -731,7 +732,7 @@ const advancedCli = walletCli.subcommand("advancedArgs", "advanced", {
advancedCli
.subcommand("init", "init", {
- help: "Initialize the wallet (with DB) and exit."
+ help: "Initialize the wallet (with DB) and exit.",
})
.action(async (args) => {
await withWallet(args, async () => {});