From 8bbc0bff941d76d475e60aeddac9f62aef7fb744 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Mon, 10 Sep 2012 17:43:29 -0400 Subject: [PATCH] CC-4389: Convert all PHP errors to throw exceptions instead -echo to stdout as well --- airtime_mvc/public/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index 6335eb22a..46b97adfc 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -57,6 +57,7 @@ try { $application->bootstrap()->run(); } } catch (Exception $e) { + echo $e->getMessage(); Logging::info($e->getMessage()); }