prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "
(v ...any)
| 249 | |
| 250 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> " |
| 251 | func Errorln(v ...any) { |
| 252 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3))) |
| 253 | fmt.Println(v...) |
| 254 | fmt.Print("\r> ") |
| 255 | } |
| 256 | |
| 257 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a new line |
| 258 | func ErrorlnClean(v ...any) { |
no test coverage detected