fix debug template

This commit is contained in:
ghost 2024-04-30 03:51:11 +03:00
parent 0816c22595
commit 04de500173
2 changed files with 6 additions and 3 deletions

View File

@ -69,7 +69,7 @@
"debug":
{
"enabled":true,
"template":"[{time}] [{code}] {host}:{port} {path} {size} bytes {data}"
"template":"[{time}] {host}:{port} captcha: {code} sent: {sent} length: {size} bytes {data}"
}
}
},

View File

@ -169,6 +169,7 @@ $server->setHandler(
): ?string
{
global $config;
global $code;
// @TODO save content in blockchain with kevacoin-php
@ -188,7 +189,8 @@ $server->setHandler(
'{time}',
'{host}',
'{port}',
'{path}',
'{sent}',
'{code}',
'{size}',
'{data}'
],
@ -196,7 +198,8 @@ $server->setHandler(
(string) date('c'),
(string) parse_url($url, PHP_URL_HOST),
(string) parse_url($url, PHP_URL_PORT),
(string) str_replace('%', '%%', $request),
(string) str_replace('%', '%%', trim($request)),
(string) is_null($code) ? '[off]' : $code,
(string) mb_strlen($content),
(string) PHP_EOL . $content . PHP_EOL,
],