moves log line to correct position

This commit is contained in:
Hyatt 2022-02-07 07:57:48 -06:00
parent efebeddbd6
commit 8eb34d25fb
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -25,6 +25,7 @@ func getListData() []string {
listSimple := make(chan []string) listSimple := make(chan []string)
listComplex := make(chan []string) listComplex := make(chan []string)
log.Printf("[INFO] Downloading blocklists\n")
// Get Simple Blocklists // Get Simple Blocklists
go func() { go func() {
data := getData(config.URLBlocklistsSimple) data := getData(config.URLBlocklistsSimple)
@ -69,7 +70,6 @@ func getListData() []string {
} }
func getData(urls []string) []byte { func getData(urls []string) []byte {
log.Printf("[INFO] Downloading blocklists\n")
var listData []byte var listData []byte
for _, u := range urls { for _, u := range urls {