prints the contents prefixed by a carriage return + blue info text and suffixed with a new line
(v ...any)
| 256 | |
| 257 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a new line |
| 258 | func ErrorlnClean(v ...any) { |
| 259 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3))) |
| 260 | fmt.Print(v...) |
| 261 | fmt.Println("\r") |
| 262 | } |
| 263 | |
| 264 | // prints the contents prefixed by a carriage return + blue info text |
| 265 | func Error(v ...any) { |
nothing calls this directly
no test coverage detected