Don't swallow errors in console.php

This commit is contained in:
Christian Kampka 2015-02-28 12:31:11 +01:00
parent 42f6448da2
commit bf01327cd0

View file

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