diff --git a/app/Notifications/AppriseChannel.php b/app/Notifications/AppriseChannel.php index c6fe6a1c3..b5885202b 100644 --- a/app/Notifications/AppriseChannel.php +++ b/app/Notifications/AppriseChannel.php @@ -32,6 +32,11 @@ public function send(object $notifiable, Notification $notification): void return; } + Log::debug('Attempting to send Apprise notification', [ + 'channel' => $message->urls, + 'instance' => $appriseUrl, + ]); + try { $request = Http::timeout(30) ->withHeaders([ @@ -57,7 +62,7 @@ public function send(object $notifiable, Notification $notification): void throw new Exception('Apprise returned an error, please check Apprise logs for details'); } - Log::info('Apprise notification sent', [ + Log::debug('Apprise notification sent', [ 'channel' => $message->urls, 'instance' => $appriseUrl, ]);