Commit 52bed1748958ecf97bd33470875dc444cbcadb6d
Committed by
Andrew Shvayka
1 parent
e5a6ddb0
changed logging level to WARN
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -207,7 +207,7 @@ public class JsonMqttAdaptor implements MqttTransportAdaptor { |
207 | 207 | try { |
208 | 208 | return new JsonParser().parse(payload); |
209 | 209 | } catch (JsonSyntaxException ex) { |
210 | - log.error("Payload is in incorrect format: {}", payload); | |
210 | + log.warn("Payload is in incorrect format: {}", payload); | |
211 | 211 | throw new AdaptorException(ex); |
212 | 212 | } |
213 | 213 | } | ... | ... |