From: Michael Date: Wed, 18 Oct 2023 20:21:02 +0000 (+0000) Subject: Another unneeded callstack call is removed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=004e87c9866c0213fb0a3741296e6aa2a26c0992;p=friendica.git Another unneeded callstack call is removed --- diff --git a/src/Core/System.php b/src/Core/System.php index 9e820dde5f..8869cebbef 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -524,7 +524,7 @@ class System public static function externalRedirect($url, $code = 302) { if (empty(parse_url($url, PHP_URL_SCHEME))) { - Logger::warning('No fully qualified URL provided', ['url' => $url, 'callstack' => self::callstack(20)]); + Logger::warning('No fully qualified URL provided', ['url' => $url]); DI::baseUrl()->redirect($url); }