Merge pull request #14608 from kampka/master

Don't swallow errors in console.php
This commit is contained in:
Thomas Müller 2015-03-02 01:40:57 -08:00
commit 9c79b1fc6d
1 changed files with 1 additions and 0 deletions

View File

@ -58,4 +58,5 @@ try {
} catch (Exception $ex) {
echo "An unhandled exception has been thrown:" . PHP_EOL;
echo $ex;
exit(1);
}