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;