diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-08-19 01:07:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-19 01:07:49 +0000 |
commit | 1b93494ed7c4808aaf979472a9349177ff99d8d8 (patch) | |
tree | fc3431beff1f0140327677d31328fb72cad115b8 /controlloop/common/model-impl/rest | |
parent | 1a5a5b0744e57d71ecca6a79eb5cfcbc1df16a19 (diff) | |
parent | 6d7e231986b84cf6646e46beba7e7e05699bffe6 (diff) |
Merge "Code cleanup to resolve critical sonar issues"
Diffstat (limited to 'controlloop/common/model-impl/rest')
-rw-r--r-- | controlloop/common/model-impl/rest/src/main/java/org/onap/policy/rest/RESTManager.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/controlloop/common/model-impl/rest/src/main/java/org/onap/policy/rest/RESTManager.java b/controlloop/common/model-impl/rest/src/main/java/org/onap/policy/rest/RESTManager.java index e42ab1693..8c79d2ad3 100644 --- a/controlloop/common/model-impl/rest/src/main/java/org/onap/policy/rest/RESTManager.java +++ b/controlloop/common/model-impl/rest/src/main/java/org/onap/policy/rest/RESTManager.java @@ -34,9 +34,13 @@ import org.apache.http.impl.client.BasicCredentialsProvider; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; import org.apache.http.util.EntityUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public final class RESTManager { + private static final Logger logger = LoggerFactory.getLogger(RESTManager.class); + public static class Pair<A, B> { public final A a; public final B b; @@ -81,7 +85,8 @@ public final class RESTManager { return new Pair<Integer, String>(response.getStatusLine().getStatusCode(), returnBody); } catch (IOException e) { - System.err.println("Failed to POST to " + url + e.getLocalizedMessage()); + logger.error("Failed to POST to {}",url,e); + return null; } @@ -108,7 +113,7 @@ public final class RESTManager { return new Pair<Integer, String>(response.getStatusLine().getStatusCode(), returnBody); } catch (IOException e) { - System.err.println("Failed to GET to " + url + e.getLocalizedMessage()); + logger.error("Failed to GET to {}",url,e); return null; } } |