From f3f4d9bca35d0c9e209277f40f6fc1f7c76ed5f8 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Fri, 15 May 2026 17:32:10 +0200 Subject: [PATCH] Cleanup --- RNS/Utilities/rncp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/RNS/Utilities/rncp.py b/RNS/Utilities/rncp.py index fd62c839..fb71a04a 100644 --- a/RNS/Utilities/rncp.py +++ b/RNS/Utilities/rncp.py @@ -306,7 +306,7 @@ def receive_resource_concluded(resource): full_save_path = saved_filename+"."+str(counter) shutil.move(resource.data.name, full_save_path) - RNS.log("Saved received file to "+full_save_path, RNS.LOG_INFO) + RNS.log("Saved received file to "+full_save_path, RNS.LOG_NOTICE) except Exception as e: RNS.log(f"An error occurred while saving received resource: {e}", RNS.LOG_ERROR) @@ -515,7 +515,6 @@ def fetch(configdir, identitypath = None, verbosity = 0, quietness = 0, destinat full_save_path = saved_filename+"."+str(counter) shutil.move(resource.data.name, full_save_path) - print("Saved received file to "+full_save_path) except Exception as e: print(f"An error occurred while saving received resource: {e}")