From 893fc87b28db78771abfc2d54d91784d113bde3e Mon Sep 17 00:00:00 2001 From: tecnovert Date: Mon, 18 Nov 2024 15:43:38 +0200 Subject: [PATCH] Don't log to closed file. --- basicswap/bin/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basicswap/bin/run.py b/basicswap/bin/run.py index 1dfb18f..e16ec1e 100755 --- a/basicswap/bin/run.py +++ b/basicswap/bin/run.py @@ -617,7 +617,7 @@ def main(): ) runClient(fp, data_dir, chain, start_only_coins) - logger.info("Done.") + print("Done.") return swap_client.fail_code if swap_client is not None else 0