prints the contents prefixed by a carriage return + blue info text
(format string, v ...any)
| 269 | |
| 270 | // prints the contents prefixed by a carriage return + blue info text |
| 271 | func Errorf(format string, v ...any) { |
| 272 | fmt.Printf("\r%s %s %s: %s", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3)), fmt.Sprintf(format, v...)) |
| 273 | } |
| 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) { |
nothing calls this directly
no test coverage detected