fix: log warning on backup failure during name cleanup process

This commit is contained in:
Andras Bacsai
2025-11-27 10:51:19 +01:00
parent b5666da342
commit d27d697b37

View File

@@ -202,7 +202,8 @@ class CleanupNames extends Command
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()]);
}
}