aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPriyadharshini <priyadharshini.b96@wipro.com>2020-04-09 15:17:14 +0530
committerPriyadharshini <priyadharshini.b96@wipro.com>2020-04-09 15:17:14 +0530
commit0014ababab33a41793a4dcabbbb5d15e3e7d15e9 (patch)
tree592f28d87bc153cf11dda235a324412748b8844b /src
parente70f42bcbcb801c895c8b20f9617e1fb8dd969da (diff)
Fix logger in SoClient
Issue-ID: EXTAPI-428 Signed-off-by: Priyadharshini <priyadharshini.b96@wipro.com> Change-Id: Ib925680be755b62a332507b45b27af62ca951731
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/onap/nbi/apis/serviceorder/SoClient.java2
1 files changed, 1 insertions, 1 deletions
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());