| 220 | } |
| 221 | |
| 222 | type testLogConsumer struct { |
| 223 | mu sync.Mutex |
| 224 | // logs is keyed by container ID; values are log lines |
| 225 | logs map[string][]string |
| 226 | } |
| 227 | |
| 228 | func (l *testLogConsumer) Log(containerName, message string) { |
| 229 | l.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected