prints the contents prefixed by a carriage return + blue info text
(v ...any)
| 233 | |
| 234 | // prints the contents prefixed by a carriage return + blue info text |
| 235 | func Info(v ...any) { |
| 236 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3))) |
| 237 | fmt.Print(v...) |
| 238 | } |
| 239 | |
| 240 | // prints the contents prefixed by a carriage return + blue info text |
| 241 | func Infof(format string, v ...any) { |
no test coverage detected