Merge pull request #14608 from kampka/master
Don't swallow errors in console.php
This commit is contained in:
commit
9c79b1fc6d
|
@ -58,4 +58,5 @@ try {
|
||||||
} catch (Exception $ex) {
|
} catch (Exception $ex) {
|
||||||
echo "An unhandled exception has been thrown:" . PHP_EOL;
|
echo "An unhandled exception has been thrown:" . PHP_EOL;
|
||||||
echo $ex;
|
echo $ex;
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue