prints the contents prefixed by a carriage return + blue info text and suffixed with a new line
(v ...any)
| 219 | |
| 220 | // prints the contents prefixed by a carriage return + blue info text and suffixed with a new line |
| 221 | func InfolnClean(v ...any) { |
| 222 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3))) |
| 223 | fmt.Print(v...) |
| 224 | fmt.Println("\r") |
| 225 | } |
| 226 | |
| 227 | // prints the contents formatted prefixed by a carriage return + blue info text and suffixed with a new line |
| 228 | func InfolnfClean(format string, v ...any) { |
no test coverage detected