(container, msg string)
| 130 | } |
| 131 | |
| 132 | func (l *logConsumer) Status(container, msg string) { |
| 133 | p := l.getPresenter(container) |
| 134 | s := p.colors(fmt.Sprintf("%s%s %s\n", goterm.RESET_LINE, container, msg)) |
| 135 | l.stdout.Write([]byte(s)) //nolint:errcheck |
| 136 | } |
| 137 | |
| 138 | func (l *logConsumer) computeWidth() { |
| 139 | width := 0 |
nothing calls this directly
no test coverage detected