Messagef is a convenience function to write a printf-formatted progress message to the channel.
(out Output, id, format string, a ...any)
| 83 | // Messagef is a convenience function to write a printf-formatted progress |
| 84 | // message to the channel. |
| 85 | func Messagef(out Output, id, format string, a ...any) { |
| 86 | _ = out.WriteProgress(Progress{ID: id, Message: fmt.Sprintf(format, a...)}) |
| 87 | } |
| 88 | |
| 89 | // Aux sends auxiliary information over a progress interface, which will not be |
| 90 | // formatted for the UI. This is used for things such as push signing. |
nothing calls this directly
no test coverage detected
searching dependent graphs…