Added filament lookup for extensions

This commit is contained in:
Constantin Graf
2024-04-22 11:55:28 +02:00
committed by Constantin Graf
parent 5e979db912
commit bd6263708d
3 changed files with 35 additions and 3 deletions

View File

@@ -67,6 +67,11 @@ return [
'replace_placeholders' => true,
],
'stack_production' => [
'driver' => 'stack',
'channels' => ['single', 'sentry'],
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
@@ -84,6 +89,12 @@ return [
'replace_placeholders' => true,
],
'sentry' => [
'driver' => 'sentry',
'level' => env('LOG_LEVEL', 'error'),
'bubble' => true,
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),