Fixed debug log typo for RestClient 96/86096/1
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Tue, 23 Apr 2019 21:21:25 +0000 (17:21 -0400)
committerOleg Mitsura <oleg.mitsura@amdocs.com>
Tue, 23 Apr 2019 21:22:10 +0000 (17:22 -0400)
Issue-ID: AAI-2329

Change-Id: Id1e571a8967152405dcbcfb7306bcf6cb03ef9c6
Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java

index 130cb6e..f5fc074 100644 (file)
@@ -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);