X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FApp.php;h=a01a6bc6c8310975608d997baaeee890fc88f9f9;hb=d4a5a8051ad34a7be72238967afb3e6b140afdc8;hp=a708abe649e9f3a0e22c74746a6c2a8a4c430bc5;hpb=a2a1d852e9a17059dcbcf5e8bf5356d42a3998cf;p=friendica.git diff --git a/src/App.php b/src/App.php index a708abe649..a01a6bc6c8 100644 --- a/src/App.php +++ b/src/App.php @@ -63,8 +63,8 @@ use Psr\Log\LoggerInterface; class App { const PLATFORM = 'Friendica'; - const CODENAME = 'Giant Rhubarb'; - const VERSION = '2023.09-dev'; + const CODENAME = 'Yellow Archangel'; + const VERSION = '2023.12'; // Allow themes to control internal parameters // by changing App values in theme.php @@ -567,6 +567,7 @@ class App { $requeststring = ($_SERVER['REQUEST_METHOD'] ?? '') . ' ' . ($_SERVER['REQUEST_URI'] ?? '') . ' ' . ($_SERVER['SERVER_PROTOCOL'] ?? ''); $this->logger->debug('Request received', ['address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); + $request_start = microtime(true); $this->profiler->set($start_time, 'start'); $this->profiler->set(microtime(true), 'classinit'); @@ -715,10 +716,10 @@ class App $response = $page->run($this, $this->baseURL, $this->args, $this->mode, $response, $this->l10n, $this->profiler, $this->config, $pconfig, $nav, $this->session->getLocalUserId()); } - $this->logger->debug('Request processed sucessfully', ['response' => $response->getStatusCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); + $this->logger->debug('Request processed sucessfully', ['response' => $response->getStatusCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '', 'duration' => number_format(microtime(true) - $request_start, 3)]); System::echoResponse($response); } catch (HTTPException $e) { - $this->logger->debug('Request processed with exception', ['response' => $e->getCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); + $this->logger->debug('Request processed with exception', ['response' => $e->getCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '', 'duration' => number_format(microtime(true) - $request_start, 3)]); $httpException->rawContent($e); } $page->logRuntime($this->config, 'runFrontend');