mirror of
https://github.com/kevachat/npsapp.git
synced 2025-02-05 19:54:15 +00:00
fix debug template
This commit is contained in:
parent
0816c22595
commit
04de500173
@ -69,7 +69,7 @@
|
|||||||
"debug":
|
"debug":
|
||||||
{
|
{
|
||||||
"enabled":true,
|
"enabled":true,
|
||||||
"template":"[{time}] [{code}] {host}:{port} {path} {size} bytes {data}"
|
"template":"[{time}] {host}:{port} captcha: {code} sent: {sent} length: {size} bytes {data}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -169,6 +169,7 @@ $server->setHandler(
|
|||||||
): ?string
|
): ?string
|
||||||
{
|
{
|
||||||
global $config;
|
global $config;
|
||||||
|
global $code;
|
||||||
|
|
||||||
// @TODO save content in blockchain with kevacoin-php
|
// @TODO save content in blockchain with kevacoin-php
|
||||||
|
|
||||||
@ -188,7 +189,8 @@ $server->setHandler(
|
|||||||
'{time}',
|
'{time}',
|
||||||
'{host}',
|
'{host}',
|
||||||
'{port}',
|
'{port}',
|
||||||
'{path}',
|
'{sent}',
|
||||||
|
'{code}',
|
||||||
'{size}',
|
'{size}',
|
||||||
'{data}'
|
'{data}'
|
||||||
],
|
],
|
||||||
@ -196,7 +198,8 @@ $server->setHandler(
|
|||||||
(string) date('c'),
|
(string) date('c'),
|
||||||
(string) parse_url($url, PHP_URL_HOST),
|
(string) parse_url($url, PHP_URL_HOST),
|
||||||
(string) parse_url($url, PHP_URL_PORT),
|
(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) mb_strlen($content),
|
||||||
(string) PHP_EOL . $content . PHP_EOL,
|
(string) PHP_EOL . $content . PHP_EOL,
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user