From 8adfa8dd835ae9eeddf28fdab5c8551322c8e08b Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 15 Feb 2024 12:28:12 +0000 Subject: [PATCH] Change exceptions to warnings Signed-off-by: snipe --- app/Listeners/CheckoutableListener.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Listeners/CheckoutableListener.php b/app/Listeners/CheckoutableListener.php index 56ca0bd19d..9768f2b956 100644 --- a/app/Listeners/CheckoutableListener.php +++ b/app/Listeners/CheckoutableListener.php @@ -69,9 +69,9 @@ class CheckoutableListener } } } catch (ClientException $e) { - Log::info("Exception caught during checkout notification: " . $e->getMessage()); + Log::warning("Exception caught during checkout notification: " . $e->getMessage()); } catch (Exception $e) { - Log::info("Exception caught during checkout notification: " . $e->getMessage()); + Log::warning("Exception caught during checkout notification: " . $e->getMessage()); } } @@ -124,9 +124,9 @@ class CheckoutableListener } } catch (ClientException $e) { - Log::info("Exception caught during checkout notification: " . $e->getMessage()); + Log::warning("Exception caught during checkout notification: " . $e->getMessage()); } catch (Exception $e) { - Log::info("Exception caught during checkin notification: " . $e->getMessage()); + Log::warning("Exception caught during checkin notification: " . $e->getMessage()); } }