| 36 | } |
| 37 | |
| 38 | type printfLogger struct { |
| 39 | logger interface{ Printf(string, ...interface{}) } |
| 40 | logInfo bool |
| 41 | } |
| 42 | |
| 43 | func (pl printfLogger) Info(msg string, keysAndValues ...interface{}) { |
| 44 | if pl.logInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected