From b5d90b7b13aba74dbf006155e540b92fca596dd3 Mon Sep 17 00:00:00 2001 From: Lorenzo Bolla Date: Fri, 8 Oct 2021 11:19:54 +0200 Subject: [PATCH] Add more logging --- http/grab.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/grab.go b/http/grab.go index 50a03eb8..a56fdd79 100644 --- a/http/grab.go +++ b/http/grab.go @@ -67,6 +67,8 @@ func (d *GrabDownloader) DownloadWithChecksum(ctx context.Context, url string, d } func (d *GrabDownloader) log(msg string, a ...interface{}) { + // TODO don't long to stdout + fmt.Printf(msg, a...) if d.progress != nil { d.progress.Printf(msg, a...) }