From: Priyadharshini Date: Thu, 9 Apr 2020 09:47:14 +0000 (+0530) Subject: Fix logger in SoClient X-Git-Tag: 6.0.2~2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=0014ababab33a41793a4dcabbbb5d15e3e7d15e9;hp=e70f42bcbcb801c895c8b20f9617e1fb8dd969da;p=externalapi%2Fnbi.git Fix logger in SoClient Issue-ID: EXTAPI-428 Signed-off-by: Priyadharshini Change-Id: Ib925680be755b62a332507b45b27af62ca951731 --- 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());