Logger is a structured logging interface satisfied by *log.Helper from Kratos.
| 34 | |
| 35 | // Logger is a structured logging interface satisfied by *log.Helper from Kratos. |
| 36 | type Logger interface { |
| 37 | Debugw(keyvals ...any) |
| 38 | Warnw(keyvals ...any) |
| 39 | Infow(keyvals ...any) |
| 40 | Errorw(keyvals ...any) |
| 41 | } |
| 42 | |
| 43 | type config struct { |
| 44 | ttl time.Duration |
no outgoing calls
no test coverage detected