From 004e87c9866c0213fb0a3741296e6aa2a26c0992 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Oct 2023 20:21:02 +0000 Subject: [PATCH] Another unneeded callstack call is removed --- src/Core/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }