| 162 | } |
| 163 | |
| 164 | type logDecorator struct { |
| 165 | decorated api.LogConsumer |
| 166 | Before func() |
| 167 | After func() |
| 168 | } |
| 169 | |
| 170 | func (l logDecorator) Log(containerName, message string) { |
| 171 | l.Before() |
nothing calls this directly
no outgoing calls
no test coverage detected