diff --git a/cmd/gogitlabber/gitlab.go b/cmd/gogitlabber/gitlab.go index fee8ca4..e6fa0d8 100644 --- a/cmd/gogitlabber/gitlab.go +++ b/cmd/gogitlabber/gitlab.go @@ -61,7 +61,7 @@ func fetchRepositoriesGitlab() ([]Repository, error) { repoCount := len(repositories) - logging.Print("Resetting the progressbar", nil) + logging.Print("BAR: Resetting the progressbar", nil) if !debug { err = bar.Set(0) if err != nil { @@ -69,7 +69,7 @@ func fetchRepositoriesGitlab() ([]Repository, error) { } } - logging.Print("Increasing the max value of the progressbar", nil) + logging.Print("BAR: Increasing the max value of the progressbar", nil) if !debug { bar.ChangeMax(repoCount) } diff --git a/cmd/gogitlabber/output.go b/cmd/gogitlabber/output.go index 7036632..7cef1c0 100644 --- a/cmd/gogitlabber/output.go +++ b/cmd/gogitlabber/output.go @@ -41,6 +41,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) }