feature: add error pages

This commit is contained in:
antv
2026-06-30 15:31:40 +07:00
parent 96eac88f36
commit 8cbdd93e56
21 changed files with 435 additions and 1 deletions
+9
View File
@@ -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'),
],