]> git.mxchange.org Git - friendica.git/commitdiff
Added log entry to improve matching with the access log
authorMichael <heluecht@pirati.ca>
Mon, 11 Sep 2023 08:47:35 +0000 (08:47 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 11 Sep 2023 08:47:35 +0000 (08:47 +0000)
src/App.php

index db3e644c2fc4391a6716c3cfb184b8b6fe29d694..dd54e05eea70660aa3a805574878baeb01f46dc0 100644 (file)
@@ -565,6 +565,9 @@ class App
         */
        public function runFrontend(App\Router $router, IManagePersonalConfigValues $pconfig, Authentication $auth, App\Page $page, Nav $nav, ModuleHTTPException $httpException, HTTPInputData $httpInput, float $start_time, array $server)
        {
+               $requeststring = ($_SERVER['REQUEST_METHOD'] ?? '') . ' ' . ($_SERVER['REQUEST_URI'] ?? '') . ' ' . ($_SERVER['SERVER_PROTOCOL'] ?? '');
+               $this->logger->debug('Got request', ['address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']);
+
                $this->profiler->set($start_time, 'start');
                $this->profiler->set(microtime(true), 'classinit');