prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "
(format string, v ...any)
| 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) { |
| 247 | fmt.Printf("\r%s %s %s: %s\n\r> ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3)), fmt.Sprintf(format, v...)) |
| 248 | } |
| 249 | |
| 250 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> " |
| 251 | func Errorln(v ...any) { |
no test coverage detected