prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "
(format string, v ...any)
| 274 | |
| 275 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> " |
| 276 | func Errorlnf(format string, v ...any) { |
| 277 | fmt.Printf("\r%s %s %s: %s\n\r> ", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3)), fmt.Sprintf(format, v...)) |
| 278 | } |
| 279 | |
| 280 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> " |
| 281 | func Warnln(v ...any) { |
no test coverage detected