From dcdc2c50ad19676794ddf2aaa996ec9cd035e4c5 Mon Sep 17 00:00:00 2001 From: ghost Date: Mon, 8 May 2023 08:31:34 +0300 Subject: [PATCH] update debug string names --- crontab/cleaner.php | 8 ++++---- crontab/crawler.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/crontab/cleaner.php b/crontab/cleaner.php index ba5eca6..819a1b6 100644 --- a/crontab/cleaner.php +++ b/crontab/cleaner.php @@ -219,9 +219,9 @@ echo 'Manifests deleted: ' . $manifestsDeleted . PHP_EOL; echo 'Host page bans removed: ' . $hostPagesBansRemoved . PHP_EOL; echo 'Host images bans removed: ' . $hostImagesBansRemoved . PHP_EOL; -echo 'Requests total: ' . $requestsTotal . PHP_EOL; -echo 'Requests total size: ' . $requestSizeTotal . PHP_EOL; -echo 'Download total size: ' . $downloadSizeTotal . PHP_EOL; -echo 'Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; +echo 'HTTP Requests total: ' . $requestsTotal . PHP_EOL; +echo 'HTTP Requests total size: ' . $requestSizeTotal . PHP_EOL; +echo 'HTTP Download total size: ' . $downloadSizeTotal . PHP_EOL; +echo 'HTTP Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL; \ No newline at end of file diff --git a/crontab/crawler.php b/crontab/crawler.php index 129693f..a5d34a0 100644 --- a/crontab/crawler.php +++ b/crontab/crawler.php @@ -760,9 +760,9 @@ echo 'Hosts added: ' . $hostsAdded . PHP_EOL; echo 'Hosts pages banned: ' . $hostPagesBanned . PHP_EOL; echo 'Hosts images banned: ' . $hostImagesBanned . PHP_EOL; -echo 'Requests total: ' . $requestsTotal . PHP_EOL; -echo 'Requests total size: ' . $requestSizeTotal . PHP_EOL; -echo 'Download total size: ' . $downloadSizeTotal . PHP_EOL; -echo 'Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; +echo 'HTTP Requests total: ' . $requestsTotal . PHP_EOL; +echo 'HTTP Requests total size: ' . $requestSizeTotal . PHP_EOL; +echo 'HTTP Download total size: ' . $downloadSizeTotal . PHP_EOL; +echo 'HTTP Requests total time: ' . $requestsTotalTime / 1000000 . PHP_EOL; echo 'Total time: ' . microtime(true) - $timeStart . PHP_EOL . PHP_EOL;