feat: improved error messages

This commit is contained in:
Simon Cornet 2025-03-04 14:07:29 +01:00
commit 1c2be88daa
4 changed files with 11 additions and 11 deletions

View file

@ -41,7 +41,7 @@ func progressBar(repositories []Repository) {
func progressBarAdd(amount int) {
if err := bar.Add(amount); err != nil {
log.Printf("Progress bar update error: %v", err)
log.Printf("Progress bar update error: %v\n", err)
}
}