(format string, a ...any)
| 260 | } |
| 261 | |
| 262 | func (r *Reader) debugf(format string, a ...any) { |
| 263 | if r.debugFunc != nil { |
| 264 | r.debugFunc(fmt.Sprintf(format, a...)) |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | func (r *Reader) promptf(format string, a ...any) error { |
| 269 | if r.promptFunc != nil { |
no outgoing calls
no test coverage detected