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()]); } }