From a27831e49bd0af60398535fb69635c5a97f18abe Mon Sep 17 00:00:00 2001 From: mappu Date: Sun, 8 Nov 2020 13:29:08 +1300 Subject: [PATCH] remove some extra logging --- api.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/api.go b/api.go index 63b03db..c6bdaac 100644 --- a/api.go +++ b/api.go @@ -6,7 +6,6 @@ import ( "encoding/json" "fmt" "io/ioutil" - "log" "net/http" "net/url" "strings" @@ -93,8 +92,6 @@ func (this *Application) repos(ctx context.Context) ([]Repo, error) { return nil, err } - log.Printf("Page %d with %d results", nextPage, len(page)) - if len(page) == 0 && len(ret) > 0 { return ret, nil // Found enough already }