Message is a convenience function to write a progress message to the channel.
(out Output, id, message string)
| 77 | |
| 78 | // Message is a convenience function to write a progress message to the channel. |
| 79 | func Message(out Output, id, message string) { |
| 80 | _ = out.WriteProgress(Progress{ID: id, Message: message}) |
| 81 | } |
| 82 | |
| 83 | // Messagef is a convenience function to write a printf-formatted progress |
| 84 | // message to the channel. |
nothing calls this directly
no test coverage detected
searching dependent graphs…