Warning should be used to display a warning
(format string, args ...interface{})
| 688 | |
| 689 | // Warning should be used to display a warning |
| 690 | func Warning(format string, args ...interface{}) { |
| 691 | fmt.Printf("\x1b[36;1m%s\x1b[0m\n", fmt.Sprintf(format, args...)) |
| 692 | } |