diff options
Diffstat (limited to 'prh-commons/src/main/java')
-rw-r--r-- | prh-commons/src/main/java/org/onap/dcaegen2/services/prh/model/CommonFunctions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prh-commons/src/main/java/org/onap/dcaegen2/services/prh/model/CommonFunctions.java b/prh-commons/src/main/java/org/onap/dcaegen2/services/prh/model/CommonFunctions.java index f7f3d36a..634cfa9b 100644 --- a/prh-commons/src/main/java/org/onap/dcaegen2/services/prh/model/CommonFunctions.java +++ b/prh-commons/src/main/java/org/onap/dcaegen2/services/prh/model/CommonFunctions.java @@ -47,7 +47,7 @@ public class CommonFunctions { public static Optional<Integer> handleResponse(HttpResponse response) throws IOException { final Integer responseCode = response.getStatusLine().getStatusCode(); - logger.trace("Status code of operation: {}", responseCode); + logger.info("Status code of operation: {}", responseCode); final HttpEntity responseEntity = response.getEntity(); if (HttpUtils.isSuccessfulResponseCode(responseCode)) { |