mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 12:17:05 -08:00
Improve try catch blocks
This commit is contained in:
parent
9ef598d07b
commit
dae9e6d096
|
@ -42,7 +42,7 @@ class CheckoutableListener
|
|||
/**
|
||||
* Make a checkout acceptance and attach it in the notification
|
||||
*/
|
||||
$acceptance = $this->getCheckoutAcceptance($event);
|
||||
$acceptance = $this->getCheckoutAcceptance($event);
|
||||
|
||||
try {
|
||||
if (! $event->checkedOutTo->locale) {
|
||||
|
@ -61,12 +61,11 @@ class CheckoutableListener
|
|||
Notification::route('slack', Setting::getSettings()->webhook_endpoint)
|
||||
->notify($this->getCheckoutNotification($event));
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
if ($e instanceof ClientException){
|
||||
Log::debug("Exception caught during checkout notification: ".$e->getMessage());
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
catch (ClientException $e){
|
||||
Log::debug("Exception caught during checkout notification: ".$e->getMessage());
|
||||
}
|
||||
catch (Exception $e) {
|
||||
Log::error("Exception caught during checkout notification: ".$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
@ -115,12 +114,11 @@ class CheckoutableListener
|
|||
Notification::route('slack', Setting::getSettings()->webhook_endpoint)
|
||||
->notify($this->getCheckinNotification($event));
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
if ($e instanceof ClientException){
|
||||
Log::debug("Exception caught during checkout notification: ".$e->getMessage());
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
catch (ClientException $e){
|
||||
Log::debug("Exception caught during checkout notification: ".$e->getMessage());
|
||||
}
|
||||
catch (Exception $e) {
|
||||
Log::error("Exception caught during checkin notification: ".$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue