prints the contents prefixed by a carriage return + time, blue info text and suffixed with a newline and "> "
(v ...any)
| 212 | |
| 213 | // prints the contents prefixed by a carriage return + time, blue info text and suffixed with a newline and "> " |
| 214 | func Infoln(v ...any) { |
| 215 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3))) |
| 216 | fmt.Println(v...) |
| 217 | fmt.Print("\r> ") |
| 218 | } |
| 219 | |
| 220 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a new line |
| 221 | func InfolnClean(v ...any) { |
no test coverage detected