diff options
Diffstat (limited to 'crawlers.js')
-rw-r--r-- | crawlers.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crawlers.js b/crawlers.js index 3a1436d..9309f7d 100644 --- a/crawlers.js +++ b/crawlers.js @@ -55,7 +55,6 @@ function crawlHTTP(absURL, opts = {}, internals = {}) { .then( res => res.text().then(async text => { const links = getHTMLLinks(text) - console.log(links) const items = [] @@ -78,7 +77,6 @@ function crawlHTTP(absURL, opts = {}, internals = {}) { let base if (path.extname(absURL)) { base = path.dirname(absURL) + '/' - console.log('extname:', path.extname(absURL), 'so base:', base) } else { base = absURL } |