From 152c23b8f3572b7c982a0194b6c827294790b1f5 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Thu, 9 Jan 2025 12:55:25 -0800 Subject: [PATCH] changed log from warning to error --- app/Listeners/CheckoutableListener.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Listeners/CheckoutableListener.php b/app/Listeners/CheckoutableListener.php index 461a3162f2..e97894411a 100644 --- a/app/Listeners/CheckoutableListener.php +++ b/app/Listeners/CheckoutableListener.php @@ -106,7 +106,7 @@ class CheckoutableListener } } } catch (ClientException $e) { - Log::warning("ClientException caught during checkin notification: " . $e->getMessage()); + Log::error("ClientException caught during checkin notification: " . $e->getMessage()); return redirect()->back()->with('error', ucfirst(Setting::getSettings()->webhook_selected) . ' webhook notification failed: Check to make sure your URL is still valid.'); } catch (Exception $e) { Log::error(ucfirst(Setting::getSettings()->webhook_selected) . ' webhook notification failed:', [ @@ -196,7 +196,7 @@ class CheckoutableListener } } } catch (ClientException $e) { - Log::warning("ClientException caught during checkin notification: " . $e->getMessage()); + Log::error("ClientException caught during checkin notification: " . $e->getMessage()); return redirect()->back()->with('error', ucfirst(Setting::getSettings()->webhook_selected) .' webhook notification failed: Check to make sure the URL is still valid.'); } catch (Exception $e) { Log::error(ucfirst(Setting::getSettings()->webhook_selected) . ' webhook notification failed:', [