Browse Source

update debug string names

main
ghost 2 years ago
parent
commit
dcdc2c50ad
  1. 8
      crontab/cleaner.php
  2. 8
      crontab/crawler.php

8
crontab/cleaner.php

@ -219,9 +219,9 @@ echo 'Manifests deleted: ' . $manifestsDeleted . PHP_EOL; @@ -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;

8
crontab/crawler.php

@ -760,9 +760,9 @@ echo 'Hosts added: ' . $hostsAdded . PHP_EOL; @@ -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;

Loading…
Cancel
Save