Success will indicate an operation succeeded with colored confirmation text.
(format string, a ...any)
| 115 | |
| 116 | // Success will indicate an operation succeeded with colored confirmation text. |
| 117 | func Success(format string, a ...any) { |
| 118 | format = ColorizeText(format, "green") |
| 119 | if a != nil { |
| 120 | output.UserOut.Infof(format, a...) |
| 121 | } else { |
| 122 | output.UserOut.Info(format) |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // Debug Output controlled by DDEV_DEBUG environment variable |
| 127 | func Debug(format string, a ...any) { |
no test coverage detected