From 0014ababab33a41793a4dcabbbb5d15e3e7d15e9 Mon Sep 17 00:00:00 2001 From: Priyadharshini Date: Thu, 9 Apr 2020 15:17:14 +0530 Subject: Fix logger in SoClient Issue-ID: EXTAPI-428 Signed-off-by: Priyadharshini Change-Id: Ib925680be755b62a332507b45b27af62ca951731 --- src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java b/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java index e92f2c3..c286d60 100644 --- a/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java +++ b/src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java @@ -134,7 +134,7 @@ public class SoClient { return response; } catch (BackendFunctionalException e) { - LOGGER.error(ERROR_ON_CALLING + createSoUrl + " ," + e.getHttpStatus() + " , " + e.getBodyResponse()); + LOGGER.error(ERROR_ON_CALLING + createE2ESoUrl + " ," + e.getHttpStatus() + " , " + e.getBodyResponse()); return new ResponseEntity(e.getBodyResponse(), e.getHttpStatus()); } catch (ResourceAccessException e) { LOGGER.error(ERROR_ON_CALLING + createE2ESoUrl + " ," + e.getMessage()); -- cgit 1.2.3-korg