From bcc095e9248c9aaa183685cf16e5bf81674e6436 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Tue, 11 Sep 2012 12:03:52 -0400 Subject: [PATCH] CC-4389: Convert all PHP errors to throw exceptions instead -don't throw exception for suppressed errors. --- airtime_mvc/public/index.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index b6484a3cf..8bfa58136 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -63,6 +63,10 @@ try { } } catch (Exception $e) { echo $e->getMessage(); + echo "
";
+    echo $e->getTraceAsString();
+    echo "
"; Logging::info($e->getMessage()); + Logging::info($e->getTraceAsString()); }