HTTP BuilderのREST クライアントはHttpResponseDecoratorを返します。どうすれば生の応答を取得できますか (ログの目的で)?
編集(いくつかのコードが便利かもしれません):
withRest(uri: domainName) {
def response = post(path: 'wsPath', query: [q:'test'])
if (!response.success) {
log.error "API call failed. HTTP status: $response.status"
// I want to log raw response and URL constructed here
}