()
| 23 | type logRenderer struct{} |
| 24 | |
| 25 | func NewLogRenderer() LogRenderer { |
| 26 | return &logRenderer{} |
| 27 | } |
| 28 | |
| 29 | // Follow continuously fetches logs using the provided fetcher function and |
| 30 | // renders them to the provided writer. It stops when Render indicates to stop. |
no outgoing calls