(status string, body interface{})
| 303 | } |
| 304 | |
| 305 | func (gohanClientCLI *GohanClientCLI) logResponse(status string, body interface{}) { |
| 306 | log.Notice("Received response: %s", status) |
| 307 | jsonBody, _ := json.MarshalIndent(body, "", " ") |
| 308 | log.Info("Response body:\n %s", jsonBody) |
| 309 | } |
no test coverage detected