Merge branch 'dillon/34.3-jenkins-vapor' into vapor/development

This commit is contained in:
Dillon Ngo
2024-05-19 00:01:07 +08:00
+13 -3
View File
@@ -54,10 +54,20 @@ return [
'days' => 14,
],
// 'storage_invoices' => [
// 'driver' => 'single',
// 'path' => storage_path('logs/laravel_storage_invoices.log'),
// 'level' => 'info',
// ],
'storage_invoices' => [
'driver' => 'single',
'path' => storage_path('logs/laravel_storage_invoices.log'),
'level' => 'info',
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [
'stream' => 'php://stderr',
],
],
'slack' => [