feature: add error pages
This commit is contained in:
@@ -63,6 +63,7 @@ return [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
'permission' => 0666,
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
@@ -71,6 +72,7 @@ return [
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => env('LOG_DAILY_DAYS', 14),
|
||||
'replace_placeholders' => true,
|
||||
'permission' => 0666,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
@@ -123,6 +125,13 @@ return [
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'query' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/query.log'),
|
||||
'level' => 'debug',
|
||||
'permission' => 0666,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user