disableLogger implements the fasthttp Logger interface and discards log output.
| 20 | |
| 21 | // disableLogger implements the fasthttp Logger interface and discards log output. |
| 22 | type disableLogger struct{} |
| 23 | |
| 24 | // Printf implements the fasthttp Logger interface and discards log output. |
| 25 | func (*disableLogger) Printf(string, ...any) { |
nothing calls this directly
no outgoing calls
no test coverage detected