From 439b081bd50d0b78e6443b925cd3e8b0b2d153db Mon Sep 17 00:00:00 2001 From: Admin Date: Wed, 26 Aug 2015 11:48:51 -0500 Subject: [PATCH] Updated vera info class logging calls to be debug only. --- src/main/java/com/bwssystems/vera/VeraInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/bwssystems/vera/VeraInfo.java b/src/main/java/com/bwssystems/vera/VeraInfo.java index b11c56f..a2e1051 100644 --- a/src/main/java/com/bwssystems/vera/VeraInfo.java +++ b/src/main/java/com/bwssystems/vera/VeraInfo.java @@ -71,13 +71,13 @@ public class VeraInfo { // This function executes the url against the vera protected String doHttpGETRequest(String url) { - log.info("calling GET on URL: " + url); + log.debug("calling GET on URL: " + url); HttpGet httpGet = new HttpGet(url); try { HttpResponse response = httpClient.execute(httpGet); String theContent = EntityUtils.toString(response.getEntity()); //read content for data EntityUtils.consume(response.getEntity()); //close out inputstream ignore content - log.info("GET on URL responded: " + response.getStatusLine().getStatusCode()); + log.debug("GET on URL responded: " + response.getStatusLine().getStatusCode()); if(response.getStatusLine().getStatusCode() == 200){ return theContent; }