diff options
author | James Forsyth <jf2512@att.com> | 2019-08-15 13:27:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-15 13:27:27 +0000 |
commit | f324e606d80f7aea4da87d3872b25bb1ef69c922 (patch) | |
tree | 043246b5f2b5d3caf6d42be2fed7ad38ae569d42 /aai-rest | |
parent | fff2d1af7b401d6334c4b09868597dcc6c054e2b (diff) | |
parent | 8cd78ee8bba71e8466401bfd881044c505cdaedb (diff) |
Merge "Fixed debug log typo for RestClient"
Diffstat (limited to 'aai-rest')
-rw-r--r-- | aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java | 2 |
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); |