From 4cda3c1018c7c5f00dda60bed9a0d83e2a99487f Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 24 Apr 2025 01:12:22 +0200 Subject: [PATCH] make some logoutput more useful --- backupbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backupbot.py b/backupbot.py index f2b6570..d47c5d8 100755 --- a/backupbot.py +++ b/backupbot.py @@ -302,7 +302,7 @@ def add_backup_paths(backup_paths, settings, app, selected_volumes): included_volumes = list(zip(*includes))[0] for volume, rel_paths in includes: if not (volume_path:= volumes.get(volume)): - logger.error(f'Can not find volume with the name {volume}') + logger.error(f'Can not find volume with the name {volume} for {app}') continue if selected_volumes and volume not in selected_volumes: logger.debug(f'Skipping {volume}:{rel_paths} because the volume is not selected')