|
|
@@ -54,7 +54,7 @@ public class MqttSubscriber implements MqttCallbackExtended {
|
|
|
public void messageArrived(String topic, MqttMessage mqttMessage) {
|
|
|
try {
|
|
|
String msgContent = new String(mqttMessage.getPayload(), StandardCharsets.UTF_8);
|
|
|
- log.debug("【上报数据:收到】收到mqtt消息:" + topic + ", " + msgContent);
|
|
|
+ log.info("【上报数据:收到】收到mqtt消息:" + topic + ", " + msgContent);
|
|
|
JSONObject obj = JSON.parseObject(msgContent);
|
|
|
Device device = mqttCore.getDevice();
|
|
|
if (null == device) {
|