Преглед изворни кода

Merge pull request #372 from jenscski/LogFix

Small fix for inconsistent client name in log
release/3.x.x
Christian пре 6 година
committed by GitHub
родитељ
комит
b0da4b2b2d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 4 додато и 4 уклоњено
  1. +4
    -4
      Source/MQTTnet/Server/MqttClientKeepAliveMonitor.cs

+ 4
- 4
Source/MQTTnet/Server/MqttClientKeepAliveMonitor.cs Прегледај датотеку

@@ -14,9 +14,9 @@ namespace MQTTnet.Server

private readonly IMqttClientSession _clientSession;
private readonly IMqttNetChildLogger _logger;
private bool _isPaused;
public MqttClientKeepAliveMonitor(IMqttClientSession clientSession, IMqttNetChildLogger logger)
{
if (logger == null) throw new ArgumentNullException(nameof(logger));
@@ -76,7 +76,7 @@ namespace MQTTnet.Server
{
_logger.Warning(null, "Client '{0}': Did not receive any packet or keep alive signal.", _clientSession.ClientId);
_clientSession.Stop(MqttClientDisconnectType.NotClean);
return;
}

@@ -96,7 +96,7 @@ namespace MQTTnet.Server
}
finally
{
_logger.Verbose("Client {0}: Stopped checking keep alive timeout.", _clientSession.ClientId);
_logger.Verbose("Client '{0}': Stopped checking keep alive timeout.", _clientSession.ClientId);
}
}
}


Loading…
Откажи
Сачувај