From 8cd78ee8bba71e8466401bfd881044c505cdaedb Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Tue, 23 Apr 2019 17:21:25 -0400 Subject: Fixed debug log typo for RestClient Issue-ID: AAI-2329 Change-Id: Id1e571a8967152405dcbcfb7306bcf6cb03ef9c6 Signed-off-by: Oleg Mitsura --- aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit 1.2.3-korg