diff options
Diffstat (limited to 'ResmanagementService/service')
-rw-r--r-- | ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/RestfulUtil.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/RestfulUtil.java b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/RestfulUtil.java index 41ce7db..a8f34ce 100644 --- a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/RestfulUtil.java +++ b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/RestfulUtil.java @@ -220,7 +220,8 @@ public class RestfulUtil { } catch(ServiceException e) { LOGGER.error("function=restfulResponse, get restful response catch exception {} ", e); } - LOGGER.warn("function=restfulResponse, response status is {} ", rsp.getStatus()); + LOGGER.warn("function=restfulResponse, response status is {}, context is {} ", rsp.getStatus(), + rsp.getResponseContent()); return rsp; } |