(format string, a ...interface{})
| 40 | } |
| 41 | |
| 42 | func Debugf(format string, a ...interface{}) { |
| 43 | logger.SetFormatter(debugFormatter) |
| 44 | logger.Debug(aurora.Green(emoji.Sprintf(format, a...))) |
| 45 | } |
| 46 | |
| 47 | // Infof prints out a timestamp as prefix, Guidef just prints the message |
| 48 | func Guidef(format string, a ...interface{}) { |
no outgoing calls
no test coverage detected