From: Hypolite Petovan Date: Sun, 8 Oct 2023 02:29:06 +0000 (-0400) Subject: Add callstack to log messages to better troubleshoot warning messages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1506068f7cf93e8975220573932a2e41394dc38a;p=friendica.git Add callstack to log messages to better troubleshoot warning messages --- diff --git a/src/Core/Logger/Util/Introspection.php b/src/Core/Logger/Util/Introspection.php index 0b703da825..c154eec9f5 100644 --- a/src/Core/Logger/Util/Introspection.php +++ b/src/Core/Logger/Util/Introspection.php @@ -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), ]; }