diff --git a/app/app.go b/app/app.go index da7bcc4b81d64ff0a1724bd13c5f5f5e162d5628..93871f2bb7d26dadf04990374e7f141f01f7f015 100644 --- a/app/app.go +++ b/app/app.go @@ -49,6 +49,7 @@ func (a *App) Start(n int) error { } if len(sets) == 0 { + fmt.Println("Starting discoverNew") err := a.discoverNew() if err != nil { return err @@ -61,6 +62,7 @@ func (a *App) Start(n int) error { // check beatmaps are good and if they are, add them to the download // queue. for _, s := range sets { + fmt.Println("Checking whether", s.SetID, "is good...") b, err := a.CheckGood(&s) if err != nil { a.handle(err) @@ -68,6 +70,7 @@ func (a *App) Start(n int) error { } if b { + fmt.Println("Queueing", s.SetID) a.download <- s } }