| 129 | } |
| 130 | |
| 131 | type testLogger struct { |
| 132 | onInfo func(msg string, args ...interface{}) |
| 133 | onError func(msg string, args ...interface{}) |
| 134 | } |
| 135 | |
| 136 | func (l *testLogger) Info(msg string, args ...interface{}) { |
| 137 | if l.onInfo != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected