From 6f3224c9cc95b7f8fca940162c6d759be97d9bf2 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Thu, 6 Mar 2025 10:55:51 +0100 Subject: [PATCH] feat: improved usage of logging package --- cmd/gogitlabber/output.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gogitlabber/output.go b/cmd/gogitlabber/output.go index 7cef1c0..da13d57 100644 --- a/cmd/gogitlabber/output.go +++ b/cmd/gogitlabber/output.go @@ -43,7 +43,7 @@ func progressBar() { func progressBarAdd(amount int) { logging.Print("BAR: Progressing the bar", nil) if err := bar.Add(amount); err != nil { - logging.Print("ERROR: Progress bar update error: %v\n", err) + logging.Print("BAR: Could not update the bar", err) } }