add missing loggers

This commit is contained in:
2025-06-07 11:05:23 +02:00
parent c6a7d2d8df
commit b30501c24c

View File

@@ -127,6 +127,18 @@ return [
'path' => storage_path('logs/laravel.log'), 'path' => storage_path('logs/laravel.log'),
], ],
"projectError" => [
'driver' => 'single',
'path' => storage_path('logs/project.log'),
'level' => 'error',
],
"projectInfo" => [
'driver' => 'single',
'path' => storage_path('logs/project.log'),
'level' => 'info',
]
], ],
]; ];