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);