diff --git a/bundles/org.openhab.binding.allplay/README.md b/bundles/org.openhab.binding.allplay/README.md index f02ba3c65f852..7acb320cc23a8 100644 --- a/bundles/org.openhab.binding.allplay/README.md +++ b/bundles/org.openhab.binding.allplay/README.md @@ -13,7 +13,7 @@ Libraries for the following platforms are already included in the binding: The Windows libraries have a dependency on the [Visual C++ Redistributable for Visual Studio 2015](https://www.microsoft.com/en-US/download/details.aspx?id=48145). If you are using Windows, please make sure to install these components before using the AllPlay binding. -If there is need for another architecture/platform, please open a [ticket on GitHub](https://github.com/openhab/openhab/issues) so the missing native library can be added. +If there is need for another architecture/platform, please open a [ticket on GitHub](https://github.com/openhab/openhab-addons/issues) so the missing native library can be added. ## Supported Things diff --git a/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/Car.java b/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/Car.java index 0d08fa13aac1b..8231be38dfd3f 100644 --- a/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/Car.java +++ b/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/Car.java @@ -196,7 +196,7 @@ public void setLockStatus(JsonObject responseJson) { } } } catch (IllegalStateException | ClassCastException e) { - logger.warn("Error {} parsing Location: {}", e.getMessage(), responseJson); + logger.warn("Error {} parsing Lock Status: {}", e.getMessage(), responseJson); } } diff --git a/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/MyRenaultHttpSession.java b/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/MyRenaultHttpSession.java index 701f07fd1c18b..e70756b908513 100644 --- a/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/MyRenaultHttpSession.java +++ b/bundles/org.openhab.binding.renault/src/main/java/org/openhab/binding/renault/internal/api/MyRenaultHttpSession.java @@ -331,8 +331,8 @@ private void logKamereonCall(Request request, ContentResponse response) { response.getStatus(), response.getReason(), response.getContentAsString()); } } else { - logger.warn("Kamereon Request: {} Response: [{}] {}\n{}", request.getURI().toString(), response.getStatus(), - response.getReason(), response.getContentAsString()); + logger.debug("Kamereon Request: {} Response: [{}] {}\n{}", request.getURI().toString(), + response.getStatus(), response.getReason(), response.getContentAsString()); } }