From 03b75fb6835e21036016dfb5a0c49d879e6175b4 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Tue, 11 Mar 2025 17:55:51 -0500 Subject: [PATCH] adds sentry log driver --- config/logging.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/logging.php b/config/logging.php index 9453a2d..abffeee 100644 --- a/config/logging.php +++ b/config/logging.php @@ -96,6 +96,11 @@ return [ 'processors' => [PsrLogMessageProcessor::class], ], + 'sentry' => [ + 'driver' => 'sentry', + 'level' => env('LOG_LEVEL', 'error'), + ], + 'stderr' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'),