From e3aa4dbe3fae8dd23704f159b15c14e474a2ffae Mon Sep 17 00:00:00 2001 From: Alex Debril Date: Wed, 7 Apr 2021 22:37:48 +0200 Subject: [PATCH] Close #293 --- src/FeedIo/Reader.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/FeedIo/Reader.php b/src/FeedIo/Reader.php index 4e69759..62bcd5b 100644 --- a/src/FeedIo/Reader.php +++ b/src/FeedIo/Reader.php @@ -65,7 +65,6 @@ public function read(string $url, FeedInterface $feed, DateTime $modifiedSince = { $this->logger->debug("start reading {$url}"); if (is_null($modifiedSince)) { - $this->logger->notice("no 'modifiedSince' parameter given, setting it to 01/01/1970"); $modifiedSince = new DateTime('1800-01-01'); } @@ -92,7 +91,7 @@ public function handleResponse(ResponseInterface $response, FeedInterface $feed) $document = new Document($response->getBody()); if ($response->isModified()) { - $this->logger->info("the stream is modified, parsing it"); + $this->logger->debug("the stream is modified, parsing it"); $this->parseDocument($document, $feed); }