diff options
author | Oleg Mitsura <oleg.mitsura@amdocs.com> | 2019-04-23 17:21:25 -0400 |
---|---|---|
committer | Oleg Mitsura <oleg.mitsura@amdocs.com> | 2019-04-23 17:22:10 -0400 |
commit | 8cd78ee8bba71e8466401bfd881044c505cdaedb (patch) | |
tree | f79dad44cb3b766dda425d33a783ada4274559b8 /aai-rest | |
parent | 8eea516732e6fa5987a06979221f2b9cf34586a1 (diff) |
Fixed debug log typo for RestClient
Issue-ID: AAI-2329
Change-Id: Id1e571a8967152405dcbcfb7306bcf6cb03ef9c6
Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
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); |