remove some extra logging

This commit is contained in:
mappu 2020-11-08 13:29:08 +13:00
parent 8d84f3fc1e
commit a27831e49b
1 changed files with 0 additions and 3 deletions

3
api.go
View File

@ -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
}