(err error, format string, a ...interface{})
| 311 | } |
| 312 | |
| 313 | func (apiClient *ApiClient) logError(err error, format string, a ...interface{}) { |
| 314 | if apiClient.logger != nil { |
| 315 | apiClient.logger.Error(err, format, a...) |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | // Do FIXME ... |
| 320 | func (apiClient *ApiClient) Do( |
no test coverage detected