From 2a9a98172f08501ae6366931cf6dfd172676e0f6 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 30 Apr 2024 15:27:17 +0200 Subject: [PATCH] Add debug infos --- backupbot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backupbot.py b/backupbot.py index 05f8fe3..2e4e57d 100755 --- a/backupbot.py +++ b/backupbot.py @@ -161,6 +161,7 @@ def copy_secrets(apps): f"For the secret {sec['SecretName']} the file {src} does not exist for {s.name}") continue dst = SECRET_PATH + sec['SecretName'] + logger.debug("Copy Secret {sec['SecretName']}") copyfile(src, dst)