mirror of
https://github.com/friendica/friendica
synced 2025-05-12 06:24:11 +02:00
Adding UID and Level To String mapping
This commit is contained in:
parent
ae40963507
commit
d712d36814
2 changed files with 38 additions and 12 deletions
|
@ -69,8 +69,8 @@ class Introspection implements ProcessorInterface
|
|||
$i += $this->skipStackFramesCount;
|
||||
|
||||
return [
|
||||
'file' => isset($trace[$i - 1]['file']) ? basename($trace[$i - 1]['file']) : null,
|
||||
'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null,
|
||||
'file' => isset($trace[$i - 1]['file']) ? basename($trace[$i - 1]['file']) : null,
|
||||
'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null,
|
||||
'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null,
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue