CC-4389: Convert all PHP errors to throw exceptions instead

-echo to stdout as well
This commit is contained in:
Martin Konecny 2012-09-10 17:43:29 -04:00
parent 726cadf5ce
commit 8bbc0bff94
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ try {
$application->bootstrap()->run();
}
} catch (Exception $e) {
echo $e->getMessage();
Logging::info($e->getMessage());
}