From ef8d8693347701add0b0025665cd1a58de6046e9 Mon Sep 17 00:00:00 2001 From: Corentin Barreau Date: Tue, 27 Aug 2024 15:09:22 +0200 Subject: [PATCH] remove: print in outlinks' ref extraction --- internal/pkg/crawl/outlinks.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/pkg/crawl/outlinks.go b/internal/pkg/crawl/outlinks.go index 980a6bde..b838b803 100644 --- a/internal/pkg/crawl/outlinks.go +++ b/internal/pkg/crawl/outlinks.go @@ -1,7 +1,6 @@ package crawl import ( - "fmt" "net/url" "strings" "sync" @@ -35,8 +34,6 @@ func extractOutlinks(base *url.URL, doc *goquery.Document) (outlinks []*url.URL, if exists { rawOutlinks = append(rawOutlinks, link) } - - fmt.Println(item.Text()) }) // Turn strings into url.URL