From 013b1581753ff26fc230c4c82f3a9e9aef492099 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Wed, 5 Jun 2024 01:03:59 +0200 Subject: [PATCH] fix: Update 'discord' log level to 'error' - Changed the log level for 'discord' channel from 'debug' to 'error'. --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index 988288c..221a361 100644 --- a/config/logging.php +++ b/config/logging.php @@ -85,7 +85,7 @@ return [ 'discord' => [ 'driver' => 'custom', 'via' => \MarvinLabs\DiscordLogger\Logger::class, - 'level' => 'debug', + 'level' => 'error', 'url' => env('LOG_DISCORD_WEBHOOK_URL'), 'ignore_exceptions' => env('LOG_DISCORD_IGNORE_EXCEPTIONS', false), ],