diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/phinde/Crawler.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/phinde/Crawler.php b/src/phinde/Crawler.php index 72726a5..1cf9bdc 100644 --- a/src/phinde/Crawler.php +++ b/src/phinde/Crawler.php @@ -56,6 +56,7 @@ class Crawler $res = $req->send(); if ($res->getStatus() === 304) { //not modified since last time, so don't crawl again + $this->log('Not modified since last fetch'); return false; } else if ($res->getStatus() !== 200) { throw new \Exception( @@ -141,5 +142,10 @@ class Crawler { $this->showLinksOnly = $showLinksOnly; } + + protected function log($msg) + { + echo $msg . "\n"; + } } ?> |
