Do not exit in Debug shutdown handler

This commit is contained in:
Kijin Sung 2016-02-16 11:43:03 +09:00
parent 04e729776c
commit 2c7f220445
2 changed files with 1 additions and 2 deletions

View file

@ -329,6 +329,7 @@ class Debug
// Display the error screen.
self::displayErrorScreen($log_entry);
exit;
}
/**
@ -421,7 +422,6 @@ class Debug
// Display a generic error page.
\Context::displayErrorPage($title, $message, 500);
exit;
}
/**