mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Added Debug::get_rendered_backtrace() for rendering backtraces from other contexts (such as exceptions)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60601 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
12868bab9f
commit
1a73ef447e
@ -479,7 +479,20 @@ class Debug {
|
||||
*/
|
||||
static function backtrace($returnVal = false, $ignoreAjax = false) {
|
||||
$bt = debug_backtrace();
|
||||
$result = self::get_rendered_backtrace($bt, Director::is_cli() || (Director::is_ajax() && !$ignoreAjax));
|
||||
if ($returnVal) {
|
||||
return $result;
|
||||
} else {
|
||||
echo $result;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Render a backtrace array into an appropriate plain-text or HTML string.
|
||||
* @param $bt The trace array, as returned by debug_backtrace() or Exception::getTrace().
|
||||
* @param $plainText Set to false for HTML output, or true for plain-text output
|
||||
*/
|
||||
static function get_rendered_backtrace($bt, $plainText = false) {
|
||||
// Ingore functions that are plumbing of the error handler
|
||||
$ignoredFunctions = array('DebugView->writeTrace', 'CliDebugView->writeTrace', 'Debug::emailError','Debug::warningHandler','Debug::fatalHandler','errorHandler','Debug::showError','Debug::backtrace', 'exceptionHandler');
|
||||
while( $bt && in_array(self::full_func_name($bt[0]), $ignoredFunctions) ) {
|
||||
@ -488,7 +501,7 @@ class Debug {
|
||||
|
||||
$result = "<ul>";
|
||||
foreach($bt as $item) {
|
||||
if(Director::is_cli() || (Director::is_ajax() && !$ignoreAjax)) {
|
||||
if($plainText) {
|
||||
$result .= self::full_func_name($item,true) . "\n";
|
||||
if(isset($item['line']) && isset($item['file'])) $result .= "line $item[line] of " . basename($item['file']) . "\n";
|
||||
$result .= "\n";
|
||||
@ -505,12 +518,7 @@ class Debug {
|
||||
}
|
||||
}
|
||||
$result .= "</ul>";
|
||||
|
||||
if ($returnVal) {
|
||||
return $result;
|
||||
} else {
|
||||
echo $result;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user