Add callstack to log messages to better troubleshoot warning messages

This commit is contained in:
Hypolite Petovan 2023-10-07 22:29:06 -04:00
parent c31c264b0b
commit 1506068f7c
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ namespace Friendica\Core\Logger\Util;
use Friendica\App\Request;
use Friendica\Core\Logger\Capability\IHaveCallIntrospections;
use Friendica\Core\System;
/**
* Get Introspection information about the current call
@ -86,6 +87,7 @@ class Introspection implements IHaveCallIntrospections
'line' => $trace[$i - 1]['line'] ?? null,
'function' => $trace[$i]['function'] ?? null,
'request-id' => $this->requestId,
'stack' => System::callstack(10, 4),
];
}