The DefaultLogger does not output any information on standard output. It only shows error output on standard error.
| 9 | // |
| 10 | // It only shows error output on standard error. |
| 11 | type DefaultLogger struct { |
| 12 | writer io.Writer |
| 13 | } |
| 14 | |
| 15 | func (l DefaultLogger) LogRequest(request RequestInfo) { |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected