Skip to content

Commit

Permalink
Merge pull request #18062 from eileenmcnaughton/error_juice
Browse files Browse the repository at this point in the history
Improve error handling on IPN
  • Loading branch information
mattwire authored Aug 4, 2020
2 parents 5cb039f + ddf894d commit fbdd1f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CRM/Core/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,8 @@ public static function handleIPN() {
catch (CRM_Core_Exception $e) {
Civi::log()->error('ipn_payment_callback_exception', [
'context' => [
'backtrace' => CRM_Core_Error::formatBacktrace(debug_backtrace()),
'backtrace' => $e->getTraceAsString(),
'message' => $e->getMessage(),
],
]);
}
Expand Down

0 comments on commit fbdd1f2

Please sign in to comment.