update debug string names

This commit is contained in:
ghost 2023-05-08 08:31:34 +03:00
parent ea04220de3
commit dcdc2c50ad
2 changed files with 8 additions and 8 deletions

View File

@ -219,9 +219,9 @@ echo 'Manifests deleted: ' . $manifestsDeleted . PHP_EOL;
echo 'Host page bans removed: ' . $hostPagesBansRemoved . PHP_EOL; echo 'Host page bans removed: ' . $hostPagesBansRemoved . PHP_EOL;
echo 'Host images bans removed: ' . $hostImagesBansRemoved . PHP_EOL; echo 'Host images bans removed: ' . $hostImagesBansRemoved . PHP_EOL;
echo 'Requests total: ' . $requestsTotal . PHP_EOL; echo 'HTTP Requests total: ' . $requestsTotal . PHP_EOL;
echo 'Requests total size: ' . $requestSizeTotal . PHP_EOL; echo 'HTTP Requests total size: ' . $requestSizeTotal . PHP_EOL;
echo 'Download total size: ' . $downloadSizeTotal . PHP_EOL; echo 'HTTP Download total size: ' . $downloadSizeTotal . PHP_EOL;
echo 'Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; echo 'HTTP Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL;
echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL; echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL;

View File

@ -760,9 +760,9 @@ echo 'Hosts added: ' . $hostsAdded . PHP_EOL;
echo 'Hosts pages banned: ' . $hostPagesBanned . PHP_EOL; echo 'Hosts pages banned: ' . $hostPagesBanned . PHP_EOL;
echo 'Hosts images banned: ' . $hostImagesBanned . PHP_EOL; echo 'Hosts images banned: ' . $hostImagesBanned . PHP_EOL;
echo 'Requests total: ' . $requestsTotal . PHP_EOL; echo 'HTTP Requests total: ' . $requestsTotal . PHP_EOL;
echo 'Requests total size: ' . $requestSizeTotal . PHP_EOL; echo 'HTTP Requests total size: ' . $requestSizeTotal . PHP_EOL;
echo 'Download total size: ' . $downloadSizeTotal . PHP_EOL; echo 'HTTP Download total size: ' . $downloadSizeTotal . PHP_EOL;
echo 'Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; echo 'HTTP Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL;
echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL; echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL;