diff options
author | wasala <przemyslaw.wasala@nokia.com> | 2018-06-05 12:15:44 +0200 |
---|---|---|
committer | wasala <przemyslaw.wasala@nokia.com> | 2018-06-05 12:15:44 +0200 |
commit | e30c7d54b34daf855303f32035827ee19555b536 (patch) | |
tree | 5c6c1c0043df03bd8f9200352fe3ae7625d0abf5 /prh-commons | |
parent | 53e33ec68a6eb0a06ea130215e03a7725da9d22d (diff) |
Correction for DmaapJsonParser
*Added cases fo uTests
*Changed schedule tasks to 5s
*Changed batching message to 1
Change-Id: I8daa4f143699488c8a593634ad67452b4a194437
Issue-ID: DCAEGEN2-540
Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'prh-commons')
-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)) { |