【归档提交】当前版本为1.0.0.0

This commit is contained in:
hehaibing-1996
2024-07-31 15:25:42 +08:00
parent 6933a10119
commit d7622ee5bb
4 changed files with 11 additions and 13 deletions

View File

@ -249,14 +249,13 @@ namespace WCS.BLL
lock (sendLockObject)
{
tcpClient.Send(message);
Task.Run(() =>
{
tcpClient.Send(message);
var clientIpHost = tcpClient.IP + ":" + tcpClient.Port;
Logs.Write($"【发送{clientIpHost}】{BitConverter.ToString(message)}", LogsType.Instructions);
});
//发送自带15ms间隔
Thread.Sleep(18);
//发送自带15ms间隔
Thread.Sleep(18);
}
}
catch (Exception ex)