implement structured logging

This commit is contained in:
Markus Muellner
2022-06-30 19:37:10 +02:00
committed by Benj Fassbind
parent 0c749922c9
commit 8e62195eb5
21 changed files with 558 additions and 54 deletions

View File

@@ -42,7 +42,7 @@ func (s *DownloaderSuiteBase) SetUpTest(c *C) {
close(s.ch)
}()
s.progress = console.NewProgress()
s.progress = console.NewProgress(false)
s.progress.Start()
s.d = NewDownloader(0, 1, s.progress)

View File

@@ -41,7 +41,7 @@ func (s *GrabDownloaderSuiteBase) SetUpTest(c *C) {
close(s.ch)
}()
s.progress = console.NewProgress()
s.progress = console.NewProgress(false)
s.progress.Start()
s.d = NewGrabDownloader(0, 1, s.progress)