diff --git a/internal/log/handlers/cli/cli.go b/internal/log/handlers/cli/cli.go index 5335c51..ca716d5 100644 --- a/internal/log/handlers/cli/cli.go +++ b/internal/log/handlers/cli/cli.go @@ -106,7 +106,7 @@ func (h *Handler) TypedLog(t string, e *log.Entry) error { switch t { case "progress": var err error - s := fmt.Sprintf("%.2f%%: %s", e.Fields.Get("percentage").(float64), e.Message) + s := fmt.Sprintf("%.2f%%: %-25s", e.Fields.Get("percentage").(float64)*100, e.Message) fmt.Fprintf(h.Writer, s) fmt.Fprintln(h.Writer) return err