Commit bb8f92b122231862647464eb8bc2939646df93c2

Authored by ShvaykaD
Committed by Andrew Shvayka
1 parent 330ff094

fixed log typos in MqttTransportHandler

... ... @@ -995,7 +995,6 @@ public class MqttTransportHandler extends ChannelInboundHandlerAdapter implement
995 995 @Override
996 996 public void onAttributeUpdate(UUID sessionId, TransportProtos.AttributeUpdateNotificationMsg notification) {
997 997 log.trace("[{}] Received attributes update notification to device", sessionId);
998   - log.info("[{}] : attrSubTopicType: {}", notification.toString(), attrSubTopicType);
999 998 String topic;
1000 999 MqttTransportAdaptor adaptor;
1001 1000 switch (attrSubTopicType) {
... ... @@ -1031,7 +1030,7 @@ public class MqttTransportHandler extends ChannelInboundHandlerAdapter implement
1031 1030
1032 1031 @Override
1033 1032 public void onToDeviceRpcRequest(UUID sessionId, TransportProtos.ToDeviceRpcRequestMsg rpcRequest) {
1034   - log.info("[{}] Received RPC command to device", sessionId);
  1033 + log.trace("[{}] Received RPC command to device", sessionId);
1035 1034 String baseTopic;
1036 1035 MqttTransportAdaptor adaptor;
1037 1036 switch (rpcSubTopicType) {
... ...