From 4fd5f07e9f58de2a95167a5754c14fafc2d584e0 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 1 Jan 2015 10:24:57 -0800 Subject: [PATCH] CRM-15683 - CRM_Core_Error::handleUnhandledException - Log double exceptions --- CRM/Core/Error.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Core/Error.php b/CRM/Core/Error.php index 41aba6b00a..e6b543fac9 100644 --- a/CRM/Core/Error.php +++ b/CRM/Core/Error.php @@ -400,6 +400,7 @@ class CRM_Core_Error extends PEAR_ErrorStack { CRM_Utils_Hook::unhandledException($exception); } catch (Exception $other) { // if the exception-handler generates an exception, then that sucks! oh, well. carry on. + CRM_Core_Error::debug_var('handleUnhandledException_nestedException', self::formatTextException($other)); } $config = CRM_Core_Config::singleton(); $vars = array( -- 2.25.1