added sentry and bugsnag

This commit is contained in:
Denis Duliçi
2022-10-17 14:19:42 +03:00
parent 79dc3891a3
commit 350d189ea9
7 changed files with 1455 additions and 57 deletions

View File

@ -128,6 +128,16 @@ return [
'path' => storage_path('logs/laravel.log'),
],
'bugsnag' => [
'driver' => 'bugsnag',
'level' => env('LOG_LEVEL', 'debug'),
],
'sentry' => [
'driver' => 'sentry',
'level' => env('LOG_LEVEL', 'debug'),
],
],
];