From d27d697b37865d0416a8fad49a4c193370fcd12a Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 27 Nov 2025 10:51:19 +0100 Subject: [PATCH] fix: log warning on backup failure during name cleanup process --- app/Console/Commands/CleanupNames.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/CleanupNames.php b/app/Console/Commands/CleanupNames.php index e4bbe4a12..2451dc3ed 100644 --- a/app/Console/Commands/CleanupNames.php +++ b/app/Console/Commands/CleanupNames.php @@ -202,7 +202,8 @@ protected function createBackup(): void exec($command, $output, $returnCode); } catch (\Exception $e) { - // Silently continue + // Log failure but continue - backup is optional safeguard + Log::warning('Name cleanup backup failed', ['error' => $e->getMessage()]); } }