From 7500d1890f592d08a7ae598ab53fc3c55f9ce6b6 Mon Sep 17 00:00:00 2001 From: tq <1916474859@qq,com> Date: Tue, 16 Jul 2024 13:35:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B0=B4=E5=86=B7=E5=8F=91=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Job/SendWaterCoolJob.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Service/Job/SendWaterCoolJob.cs b/Service/Job/SendWaterCoolJob.cs index 875c39d..2fa92c5 100644 --- a/Service/Job/SendWaterCoolJob.cs +++ b/Service/Job/SendWaterCoolJob.cs @@ -7,7 +7,7 @@ using Service.WaterCool.Client; namespace Service.Job; /// -/// 每秒发送水冷固定帧 +/// 每秒发送水冷 /// [Scope] public class SendWaterCoolJob : AbstractCronJob @@ -30,10 +30,9 @@ public class SendWaterCoolJob : AbstractCronJob if (client.IsConnect && client.IsWaterCoolSend) { client.Send(); - Log.Info($"水冷固定帧发送成功"); } } - + Log.Info($"水冷发送成功"); return Task.CompletedTask; }