| 15 | } |
| 16 | |
| 17 | type DefaultLogger struct { |
| 18 | log *log.Logger |
| 19 | } |
| 20 | |
| 21 | func (l *DefaultLogger) Printf(ctx context.Context, format string, v ...interface{}) { |
| 22 | _ = l.log.Output(2, fmt.Sprintf(format, v...)) |
nothing calls this directly
no outgoing calls
no test coverage detected