feat(scheduling): introduce ScheduledJobManager and ServerResourceManager for enhanced job scheduling and resource management

This commit is contained in:
Andras Bacsai
2025-07-12 14:44:44 +02:00
parent 0f5c988658
commit 80fae306e6
3 changed files with 427 additions and 4 deletions

View File

@@ -122,15 +122,15 @@ return [
'scheduled' => [
'driver' => 'daily',
'path' => storage_path('logs/scheduled.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => 1, // Keep logs for 1 day only (truncated daily)
'level' => 'debug',
'days' => 1,
],
'scheduled-errors' => [
'driver' => 'daily',
'path' => storage_path('logs/scheduled-errors.log'),
'level' => 'error',
'days' => 7, // Keep error logs for 7 days
'level' => 'debug',
'days' => 7,
],
],