reduced logging level as the util class cannot judge the severity (#227)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer
2017-11-05 22:06:47 +01:00
committed by GitHub
parent 597b986199
commit 5be5bc8284
@@ -196,7 +196,7 @@ public class HttpUtil {
int statusCode = client.executeMethod(method);
if (statusCode != HttpStatus.SC_OK) {
logger.warn("Method failed: {}", method.getStatusLine());
logger.debug("Method failed: {}", method.getStatusLine());
}
String responseBody = IOUtils.toString(method.getResponseBodyAsStream());