prints the contents prefixed by a carriage return + blue info text
(v ...any)
| 263 | |
| 264 | // prints the contents prefixed by a carriage return + blue info text |
| 265 | func Error(v ...any) { |
| 266 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3))) |
| 267 | fmt.Print(v...) |
| 268 | } |
| 269 | |
| 270 | // prints the contents prefixed by a carriage return + blue info text |
| 271 | func Errorf(format string, v ...any) { |
nothing calls this directly
no test coverage detected