update versions and change to std logger

This commit is contained in:
Seraphim Strub 2023-04-23 00:33:20 +02:00
parent aa20d59a0f
commit df441014ed
17 changed files with 212 additions and 147 deletions

View file

@ -2,8 +2,8 @@ package config
import (
"encoding/json"
"github.com/disgoorg/log"
"io"
"log"
"net/http"
)
@ -35,6 +35,6 @@ func LoadAppleList() error {
return err
}
AppleList = data.Body
log.Debug("loaded apple list of lenght: ", len(AppleList))
log.Printf("DEBUG: loaded apple list of lenght: %v", len(AppleList))
return nil
}