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