Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion app/Notifications/AppriseChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand All @@ -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,
]);
Expand Down