Skip to content

Commit ed0e0e5

Browse files
committed
remove debug from downloader
1 parent d74e999 commit ed0e0e5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/downloader/downloader.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import (
1010
"golang.org/x/sync/errgroup"
1111

1212
cfg "explo/src/config"
13-
"explo/src/debug"
1413
"explo/src/models"
1514
"explo/src/util"
1615
)
@@ -60,11 +59,11 @@ func NewDownloader(cfg *cfg.DownloadConfig, httpClient *util.HttpClient) *Downlo
6059
g.Go(func() error {
6160

6261
if err := d.QueryTrack(track); err != nil {
63-
debug.Debug(err.Error())
62+
log.Println(err.Error())
6463
return nil
6564
}
6665
if err := d.GetTrack(track); err != nil {
67-
debug.Debug(err.Error())
66+
log.Println(err.Error())
6867
return nil
6968
}
7069
return nil

0 commit comments

Comments
 (0)