Skip to content

Commit

Permalink
Dont log response if ok, it's a mirror of params (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
datashaman authored Mar 5, 2024
1 parent 72d2e86 commit 06767eb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/ServiceBusChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ public function send($notifiable, Notification $notification)
'tags' => [
'service-bus',
],
'response' => [
'status' => $response->getStatusCode(),
'body' => (string) $response->getBody(),
],
'status' => $response->getStatusCode(),
]
);
} catch (RequestException $exception) {
Expand Down

0 comments on commit 06767eb

Please sign in to comment.