Commit 52bed1748958ecf97bd33470875dc444cbcadb6d

Authored by nordmif
Committed by Andrew Shvayka
1 parent e5a6ddb0

changed logging level to WARN

@@ -207,7 +207,7 @@ public class JsonMqttAdaptor implements MqttTransportAdaptor { @@ -207,7 +207,7 @@ public class JsonMqttAdaptor implements MqttTransportAdaptor {
207 try { 207 try {
208 return new JsonParser().parse(payload); 208 return new JsonParser().parse(payload);
209 } catch (JsonSyntaxException ex) { 209 } catch (JsonSyntaxException ex) {
210 - log.error("Payload is in incorrect format: {}", payload); 210 + log.warn("Payload is in incorrect format: {}", payload);
211 throw new AdaptorException(ex); 211 throw new AdaptorException(ex);
212 } 212 }
213 } 213 }