From fef9e58b659d8a6eda5d96b321786413e78acad0 Mon Sep 17 00:00:00 2001 From: Robin Kluth Date: Tue, 12 Sep 2023 16:58:02 +0200 Subject: [PATCH] Add a bit more info about paths and containers --- src/scripts/backup.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/scripts/backup.php b/src/scripts/backup.php index bd57294..635bdda 100644 --- a/src/scripts/backup.php +++ b/src/scripts/backup.php @@ -65,6 +65,8 @@ goto end; } +ABHelper::backupLog("Backing up from: " . implode(', ', $abSettings->allowedSources)); + /** * At this point, we have something to work with. * Patch the destination for further usage @@ -104,6 +106,11 @@ goto continuationForAll; } +$alSortedContainers = array_column($sortedStopContainers, 'Name'); +natsort($alSortedContainers); + +ABHelper::backupLog("Selected containers: " . implode(', ', $alSortedContainers)); + ABHelper::backupLog("Sorted Stop : " . implode(", ", array_column($sortedStopContainers, 'Name')), ABHelper::LOGLEVEL_DEBUG); ABHelper::backupLog("Sorted Start: " . implode(", ", array_column($sortedStartContainers, 'Name')), ABHelper::LOGLEVEL_DEBUG);