prints the contents prefixed by a carriage return + blue info text
(v ...any)
| 293 | |
| 294 | // prints the contents prefixed by a carriage return + blue info text |
| 295 | func Warn(v ...any) { |
| 296 | fmt.Printf("\r%s %s %s: ", timeColor(timeString()), warningColor("WARN "), stackColor(stackCallerModule(3))) |
| 297 | fmt.Print(v...) |
| 298 | } |
| 299 | |
| 300 | // prints the contents prefixed by a carriage return + blue info text |
| 301 | func Warnf(format string, v ...any) { |
no test coverage detected