From a1548fe84a44d8b04f7407357723bcc1c2ec1592 Mon Sep 17 00:00:00 2001 From: administrateur Date: Sun, 30 Mar 2025 07:46:27 +0200 Subject: [PATCH] fix: verbosity of rclone --- script_creator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script_creator.py b/script_creator.py index 5071e33..c189360 100644 --- a/script_creator.py +++ b/script_creator.py @@ -62,7 +62,7 @@ def rclone_sync(website, local_path): shutil.rmtree(local_path) os.makedirs(local_path, exist_ok=True) - cmd = f"rclone --config {config_file} sync {remote_path} {local_path} --use-server-modtime --delete-after --fast-list --multi-thread-streams=4 --transfers=8 --checkers=16" + cmd = f"rclone --config {config_file} sync {remote_path} {local_path} --use-server-modtime --delete-after --fast-list --multi-thread-streams=4 --transfers=8 --checkers=16 --verbose" log_debug(f"Syncing from {remote_path} to {local_path}") return stream_command(cmd)