Warnf logs a formatted error message
(format string, a ...interface{})
| 35 | |
| 36 | // Warnf logs a formatted error message |
| 37 | func Infof(format string, a ...interface{}) { |
| 38 | logger.SetFormatter(infoFormatter) |
| 39 | logger.Info(aurora.Cyan(emoji.Sprintf(format, a...))) |
| 40 | } |
| 41 | |
| 42 | func Debugf(format string, a ...interface{}) { |
| 43 | logger.SetFormatter(debugFormatter) |
no outgoing calls
no test coverage detected