mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:02:53 +00:00
Merge pull request #4837 from annando/improved-callstack
Don't show multiple calls from the "dba" class
This commit is contained in:
commit
ca614db66a
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ class System extends BaseObject
|
|||
|
||||
while ($func = array_pop($trace)) {
|
||||
if (!empty($func['class'])) {
|
||||
// Don't show multiple calls from the same function (mostly used for "dba" class)
|
||||
if (($previous['class'] != $func['class']) && ($previous['function'] != 'q')) {
|
||||
// Don't show multiple calls from the "dba" class to show the essential parts of the callstack
|
||||
if ((($previous['class'] != $func['class']) || ($func['class'] != 'dba')) && ($previous['function'] != 'q')) {
|
||||
$classparts = explode("\\", $func['class']);
|
||||
$callstack[] = array_pop($classparts).'::'.$func['function'];
|
||||
$previous = $func;
|
||||
|
|
Loading…
Reference in a new issue