quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

commit 2378aeb83eae59c5feed0060baf825526ae0213d
parent 67dec279b7667a033580059e81ba73e4d3c01286
Author: Florian Dold <florian@dold.me>
Date:   Tue, 27 Feb 2024 13:23:03 +0100

remove logging

Diffstat:
Mqtart.c | 2--
Mtaler_wallet_core_lib.c | 3---
2 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/qtart.c b/qtart.c @@ -527,8 +527,6 @@ int main(int argc, char **argv) js_std_loop(ctx); } - fprintf(stderr, "done with main loop\n"); - if (dump_memory) { JSMemoryUsage stats; JS_ComputeMemoryUsage(rt, &stats); diff --git a/taler_wallet_core_lib.c b/taler_wallet_core_lib.c @@ -226,11 +226,8 @@ run(void *cls) eval_buf(wh->ctx, "installNativeWalletListener()", "<talerwalletcore>"); - printf("starting main loop\n"); - js_std_loop(wh->ctx); - printf("done with main loop\n"); return NULL; }