summaryrefslogtreecommitdiffstats
path: root/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java')
-rw-r--r--aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java b/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
index 130cb6ef..f5fc074b 100644
--- a/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
+++ b/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
@@ -79,7 +79,7 @@ public abstract class RestClient {
log.error("URL syntax error with url {}{}", getBaseUrl(), uri);
throw new RestClientException(e.getMessage());
}
- log.debug("METHOD={},URL={},http={}" + method, url, httpEntity);
+ log.debug("METHOD={},URL={},HEADERS={}", method, url, httpEntity);
ResponseEntity responseEntity = getRestTemplate().exchange(url, method, httpEntity, String.class);
log.debug("RESPONSE={}", responseEntity);