| 14 | var _ AllLogger[*log.Logger] = (*defaultLogger)(nil) |
| 15 | |
| 16 | type defaultLogger struct { |
| 17 | stdlog *log.Logger |
| 18 | ctx retainedContext |
| 19 | level Level |
| 20 | depth int |
| 21 | } |
| 22 | |
| 23 | // retainedContext documents that WithContext intentionally returns a logger |
| 24 | // bound to a caller-provided context-like value. The value may be fiber.Ctx, |
nothing calls this directly
no outgoing calls
no test coverage detected