(message string, args ...any)
| 183 | } |
| 184 | |
| 185 | func (l *Logger) Warnf(message string, args ...any) { |
| 186 | l.Errf(Yellow, message, args...) |
| 187 | } |
| 188 | |
| 189 | func (l *Logger) Prompt(color Color, prompt string, defaultValue string, continueValues ...string) error { |
| 190 | if l.AssumeYes { |