CC-4389: Convert all PHP errors to throw exceptions instead
-echo to stdout as well
This commit is contained in:
parent
726cadf5ce
commit
8bbc0bff94
|
@ -57,6 +57,7 @@ try {
|
||||||
$application->bootstrap()->run();
|
$application->bootstrap()->run();
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
Logging::info($e->getMessage());
|
Logging::info($e->getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue