(ctx context.Context, level Level, msg string, fields ...any)
| 211 | // interface used for all our interceptors. |
| 212 | type Logger interface { |
| 213 | Log(ctx context.Context, level Level, msg string, fields ...any) |
| 214 | } |
| 215 | |
| 216 | // LoggerFunc is a function that also implements Logger interface. |
no outgoing calls