prints the contents prefixed by a carriage return + blue info text
(format string, v ...any)
| 239 | |
| 240 | // prints the contents prefixed by a carriage return + blue info text |
| 241 | func Infof(format string, v ...any) { |
| 242 | fmt.Printf("\r%s %s %s: %s", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3)), fmt.Sprintf(format, v...)) |
| 243 | } |
| 244 | |
| 245 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> " |
| 246 | func Infolnf(format string, v ...any) { |
no test coverage detected