| 232 | } |
| 233 | |
| 234 | type stageWriter struct { |
| 235 | w io.Writer |
| 236 | verbose bool |
| 237 | silentLogs bool |
| 238 | logBuf bytes.Buffer |
| 239 | } |
| 240 | |
| 241 | func (s *stageWriter) Start(stage string) { |
| 242 | _, _ = fmt.Fprintf(s.w, "==> ⧗ %s\n", stage) |
nothing calls this directly
no outgoing calls
no test coverage detected