From 696fcd7ce4d495e356667019493bf312e2a6e47b Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 10 Nov 2016 20:52:35 +0100 Subject: add log class --- src/phinde/Fetcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/phinde/Fetcher.php') diff --git a/src/phinde/Fetcher.php b/src/phinde/Fetcher.php index 5ea0cf2..dccb118 100644 --- a/src/phinde/Fetcher.php +++ b/src/phinde/Fetcher.php @@ -43,7 +43,7 @@ class Fetcher $res = $req->send(); if ($res->getStatus() === 304) { //not modified since last time, so don't crawl again - echo "Not modified since last fetch\n"; + Log::info("Not modified since last fetch"); return false; } else if ($res->getStatus() !== 200) { throw new \Exception( @@ -79,7 +79,7 @@ class Fetcher public function storeDoc($url, $esDoc) { - echo "Store $url\n"; + Log::info("Store $url"); $esDoc->status->processed = gmdate('c'); $r = new Elasticsearch_Request( $GLOBALS['phinde']['elasticsearch'] . 'document/' -- cgit v1.2.3