From 4a0e63de303169e653758943858ec7fa9d52af16 Mon Sep 17 00:00:00 2001 From: Arindam Mondal Date: Fri, 20 Mar 2020 11:50:43 +0900 Subject: Fix sonar issues Issue-ID: EXTAPI-416 +) Format logger ++) remove toString() Change-Id: Ic119a752fa7624f4363706457e25b43d72671361 Signed-off-by: Arindam Mondal --- .../org/onap/nbi/apis/serviceorder/MultiClient.java | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java b/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java index 9729202..ef1a734 100644 --- a/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java +++ b/src/main/java/org/onap/nbi/apis/serviceorder/MultiClient.java @@ -87,6 +87,7 @@ public class MultiClient { private static final String HEADER_AUTHORIZATION = "Authorization"; private static final String X_FROM_APP_ID = "X-FromAppId"; private static final String X_TRANSACTION_ID = "X-TransactionId"; + private static final String EXCEPTION_STRING = "error on calling"; private static final Logger LOGGER = LoggerFactory.getLogger(MultiClient.class); @@ -244,17 +245,17 @@ public class MultiClient { try { ResponseEntity response = restTemplate.exchange(callUrl, HttpMethod.PUT, new HttpEntity<>(param, httpHeaders), Object.class); - LOGGER.info("response status : " + response.getStatusCodeValue()); + LOGGER.info("response status :{} " , response.getStatusCodeValue()); if (LOGGER.isWarnEnabled() && !response.getStatusCode().equals(HttpStatus.CREATED)) { LOGGER.warn("HTTP call on {} returns {} , {}", callUrl, response.getStatusCodeValue(), - response.getBody().toString()); + response.getBody()); } return response; } catch (BackendFunctionalException e) { - LOGGER.error("error on calling " + callUrl + " ," + e); + LOGGER.error(EXCEPTION_STRING , callUrl , e); return new ResponseEntity<>("problem calling onap services", e.getHttpStatus()); } catch (ResourceAccessException e) { - LOGGER.error("error on calling " + callUrl + " ," + e); + LOGGER.error(EXCEPTION_STRING , callUrl , e); return new ResponseEntity<>("unable to reach onap services", HttpStatus.INTERNAL_SERVER_ERROR); } } @@ -272,21 +273,21 @@ public class MultiClient { ResponseEntity response = restTemplate.exchange(uri, HttpMethod.GET, new HttpEntity<>(httpHeaders), Object.class); if (LOGGER.isDebugEnabled()) { - LOGGER.debug("response body : {}", response.getBody().toString()); + LOGGER.debug("response body : {}", response.getBody()); } LOGGER.info("response status : {}", response.getStatusCodeValue()); if (LOGGER.isWarnEnabled() && !response.getStatusCode().equals(HttpStatus.OK)) { LOGGER.warn("HTTP call on {} returns {} , {}", callURL, response.getStatusCodeValue(), - response.getBody().toString()); + response.getBody()); } return response; } catch (BackendFunctionalException e) { - LOGGER.error("error on calling " + callURL + " ," + e); + LOGGER.error(EXCEPTION_STRING,callURL , e); return new ResponseEntity<>("problem calling onap services", e.getHttpStatus()); } catch (ResourceAccessException e) { - LOGGER.error("error on calling " + callURL + " ," + e); + LOGGER.error(EXCEPTION_STRING , callURL, e); return new ResponseEntity<>("unable to reach onap services", HttpStatus.INTERNAL_SERVER_ERROR); } -- cgit 1.2.3-korg