From 559228d2e3b2be4d3c02a464df02a76e5029217b Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 19 Aug 2025 16:54:23 +0200 Subject: [PATCH] build --- omv_backup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/omv_backup.py b/omv_backup.py index ba0bb3f..b8260b1 100755 --- a/omv_backup.py +++ b/omv_backup.py @@ -629,15 +629,15 @@ if _BACKUP: pattern = r"^[0-9]{4}.*" # regex pattern: string starts with 'abc' if re.match(pattern, f): - print("Match!") + logging.info("Match!") dt = datetime.datetime.strptime(f, "%Y-%m-%d_%H-%M-%S") epoch_time = int(dt.timestamp()) now_epoch = int(datetime.datetime.now().timestamp()) x = now_epoch - epoch_time - print(epoch_time) # Output: 45 + logging.info(epoch_time) # Output: 45 if x > "2592000": dir_path = "{BACKUP_ROOT}/{f}" - print(f"removing {dir_path}") + logging.info(f"removing {dir_path}") #shutil.rmtree(dir_path)