mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 07:58:18 +02:00
Catch unhandled exceptions in index.php
Summary: When there is an exception in `index.php` then we currently get only blank screen. Print it instead. Test Plan: Thrown exceptions on several places of `index.php` and controller, got best results. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3619
This commit is contained in:
parent
58206a146f
commit
4a2bcc06fe
1 changed files with 141 additions and 136 deletions
|
@ -109,10 +109,6 @@ try {
|
|||
|
||||
PhutilErrorHandler::initialize();
|
||||
|
||||
} catch (Exception $ex) {
|
||||
phabricator_fatal("[Initialization Exception] ".$ex->getMessage());
|
||||
}
|
||||
|
||||
PhutilErrorHandler::setErrorListener(
|
||||
array('DarkConsoleErrorLogPluginAPI', 'handleErrors'));
|
||||
|
||||
|
@ -259,6 +255,11 @@ if (DarkConsoleXHProfPluginAPI::isProfilerRequested()) {
|
|||
$profile_sample->save();
|
||||
}
|
||||
|
||||
} catch (Exception $ex) {
|
||||
phabricator_fatal("[Exception] ".$ex->getMessage());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @group aphront
|
||||
*/
|
||||
|
@ -352,11 +353,15 @@ function phabricator_fatal($msg) {
|
|||
|
||||
global $access_log;
|
||||
if ($access_log) {
|
||||
try {
|
||||
$access_log->setData(
|
||||
array(
|
||||
'c' => 500,
|
||||
));
|
||||
$access_log->write();
|
||||
} catch (Exception $ex) {
|
||||
$msg .= "\nMoreover unable to write to access log.";
|
||||
}
|
||||
}
|
||||
|
||||
header(
|
||||
|
|
Loading…
Add table
Reference in a new issue