Browse Source

fix debug template

main
ghost 7 months ago
parent
commit
04de500173
  1. 2
      example/config.json
  2. 7
      src/server.php

2
example/config.json

@ -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}"
} }
} }
}, },

7
src/server.php

@ -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…
Cancel
Save