RequestLogger is the wrapper that logs requests to and responses from a plugin repository
| 29 | // RequestLogger is the wrapper that logs requests to and responses from |
| 30 | // a plugin repository |
| 31 | type RequestLogger struct { |
| 32 | connection plugin.Connection |
| 33 | output RequestLoggerOutput |
| 34 | } |
| 35 | |
| 36 | // NewRequestLogger returns a pointer to a RequestLogger wrapper |
| 37 | func NewRequestLogger(output RequestLoggerOutput) *RequestLogger { |
nothing calls this directly
no outgoing calls
no test coverage detected