Merge pull request #14277 from snipe/fixes/change_log_level_to_info

Lower log level to warning on webhook failure
This commit is contained in:
snipe 2024-02-15 12:28:57 +00:00 committed by GitHub
commit 6fd3c494be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,9 +69,9 @@ class CheckoutableListener
} }
} }
} catch (ClientException $e) { } catch (ClientException $e) {
Log::debug("Exception caught during checkout notification: " . $e->getMessage()); Log::warning("Exception caught during checkout notification: " . $e->getMessage());
} catch (Exception $e) { } catch (Exception $e) {
Log::error("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) { } catch (ClientException $e) {
Log::debug("Exception caught during checkout notification: " . $e->getMessage()); Log::warning("Exception caught during checkout notification: " . $e->getMessage());
} catch (Exception $e) { } catch (Exception $e) {
Log::error("Exception caught during checkin notification: " . $e->getMessage()); Log::warning("Exception caught during checkin notification: " . $e->getMessage());
} }
} }