| 36 | func (l *disableLogger) Debugf(format string, v ...any) {} |
| 37 | |
| 38 | type logger struct { |
| 39 | l *log.Logger |
| 40 | } |
| 41 | |
| 42 | func (l *logger) Errorf(format string, v ...any) { |
| 43 | l.output("ERROR", format, v...) |
nothing calls this directly
no outgoing calls
no test coverage detected