(format string, a ...interface{})
| 437 | } |
| 438 | |
| 439 | func PrintWarnMsg(format string, a ...interface{}) { |
| 440 | format = fmt.Sprintf("\033[33m[WARN] %s\033[0m\n", format) //Print error msg with yellow color |
| 441 | fmt.Printf(format, a...) |
| 442 | } |
| 443 | |
| 444 | func PrintInfoMsg(format string, a ...interface{}) { |
| 445 | fmt.Printf(format+"\n", a...) |
no outgoing calls
no test coverage detected