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); }