summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/bench1.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/src/bench1.ts')
-rw-r--r--packages/taler-wallet-cli/src/bench1.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/bench1.ts b/packages/taler-wallet-cli/src/bench1.ts
index 025d2c97e..3050d8a42 100644
--- a/packages/taler-wallet-cli/src/bench1.ts
+++ b/packages/taler-wallet-cli/src/bench1.ts
@@ -77,7 +77,7 @@ export async function runBench1(configJson: any): Promise<void> {
stopWhenDone: true,
});
- logger.info(`Finished withdrawal amount=${withdrawAmount} time=${console.time('withdraw')}`);
+ logger.info(`Finished withdrawal amount=${withdrawAmount} time=${console.timeEnd('withdraw')}`);
for (let i = 0; i < numDeposits; i++) {
@@ -93,7 +93,7 @@ export async function runBench1(configJson: any): Promise<void> {
stopWhenDone: true,
});
- logger.info(`Finished deposit amount=10 time=${console.time('deposit')}`);
+ logger.info(`Finished deposit amount=10 time=${console.timeEnd('deposit')}`);
}
wallet.stop();