fix: log warning on backup failure during name cleanup process
This commit is contained in:
parent
b5666da342
commit
d27d697b37
1 changed files with 2 additions and 1 deletions
|
|
@ -202,7 +202,8 @@ protected function createBackup(): void
|
||||||
|
|
||||||
exec($command, $output, $returnCode);
|
exec($command, $output, $returnCode);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
// Silently continue
|
// Log failure but continue - backup is optional safeguard
|
||||||
|
Log::warning('Name cleanup backup failed', ['error' => $e->getMessage()]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue