func printTableFooter()

in collector/collector.go [477:486]


func printTableFooter(foreground bool, logger *log.Logger) {
	color.Set(color.FgHiYellow)
	defer color.Unset()

	if foreground {
		fmt.Printf(strings.Repeat("-", tableWidth) + "\n")
	} else {
		logger.Info(strings.Repeat("-", tableWidth))
	}
}