| 142 | } |
| 143 | |
| 144 | type levelLogger struct { |
| 145 | log.Logger |
| 146 | } |
| 147 | |
| 148 | func (l levelLogger) Debugf(s string, i ...interface{}) { |
| 149 | _ = level.Debug(l).Log("msg", Sprintf(s, i...)) |
nothing calls this directly
no outgoing calls
no test coverage detected