(s string, i ...interface{})
| 146 | } |
| 147 | |
| 148 | func (l levelLogger) Debugf(s string, i ...interface{}) { |
| 149 | _ = level.Debug(l).Log("msg", Sprintf(s, i...)) |
| 150 | } |
| 151 | |
| 152 | func (l levelLogger) Infof(s string, i ...interface{}) { |
| 153 | _ = level.Info(l).Log("msg", Sprintf(s, i...)) |