Updates for RC2 fixing FHEM issues, Fiabaro Issues, adding functionality

for color tests, and sending multiple requests based on the Hue API
body.
This commit is contained in:
bsamuels
2018-01-05 14:48:20 -06:00
parent 3f3d643053
commit 037b151729
18 changed files with 599 additions and 148 deletions

View File

@@ -103,9 +103,10 @@ public class HTTPHandler {
retryCount = 2;
} else if (response != null) {
log.warn("HTTP response code was not an expected successful response of between 200 - 299, the code was: "
+ response.getStatusLine());
+ response.getStatusLine() + " with the content of <<<" + theContent + ">>>");
if (response.getStatusLine().getStatusCode() == 504) {
log.warn("HTTP response code was 504, retrying...");
log.debug("The 504 error content is <<<" + theContent + ">>>");
} else
retryCount = 2;