Change exceptions to warnings

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-02-15 12:28:12 +00:00
parent 6c9001df09
commit 8adfa8dd83

View file

@ -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());
}
}