Browse Source

Fixed typo

release/3.x.x
1iveowl 7 years ago
committed by GitHub
parent
commit
6d92937892
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs

+ 1
- 1
MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs View File

@@ -83,7 +83,7 @@ namespace MQTTnet.Core.Adapter
{ {
foreach (var packet in packets) foreach (var packet in packets)
{ {
if (packet == null) {continue};
if (packet == null) {continue; }


MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]"); MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]");




Loading…
Cancel
Save