feat(logging): record reservation cleanup attempts

This commit is contained in:
2026-08-19 14:05:53 -03:00
parent 1dc4e29c69
commit a2c5e687f9
5 changed files with 86 additions and 5 deletions

View File

@@ -81,6 +81,14 @@ return [
'replace_placeholders' => true,
],
'commands' => [
'driver' => 'daily',
'path' => storage_path('logs/commands/commands.log'),
'level' => env('COMMANDS_LOG_LEVEL', 'info'),
'days' => env('COMMANDS_LOG_DAYS', 30),
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),