lowered time precision, we dont need milliseconds on the progress trackers

This commit is contained in:
cheetah 2023-07-11 23:29:51 -05:00
parent 159a87faf7
commit 4e82da5e61

View file

@ -318,6 +318,10 @@ func modeIngress(folderPath string, skipN int) {
pw.SetUpdateFrequency(time.Millisecond * 100)
pw.Style().Colors = progress.StyleColorsExample
pw.Style().Options.PercentFormat = "%4.1f%%"
pw.Style().Options.ETAPrecision = time.Second
pw.Style().Options.TimeDonePrecision = time.Second
pw.Style().Options.TimeInProgressPrecision = time.Second
pw.Style().Options.TimeOverallPrecision = time.Second
pw.Style().Visibility.ETA = true
pw.Style().Visibility.ETAOverall = true
pw.Style().Visibility.Percentage = false