From b5ff5a4a75a121bf4c99b993ad2d3d0f45a585c4 Mon Sep 17 00:00:00 2001 From: lxw Date: Wed, 12 Jun 2024 11:36:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Execute/Api/PlcApi.cs | 6 ++++++ Service/Execute/Api/TboxApi.cs | 9 +++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Service/Execute/Api/PlcApi.cs b/Service/Execute/Api/PlcApi.cs index e886fa8..9312621 100644 --- a/Service/Execute/Api/PlcApi.cs +++ b/Service/Execute/Api/PlcApi.cs @@ -68,6 +68,7 @@ public class PlcApi /// public static bool WriteEntranceLamp(ushort data) { + Log.Info($"PlcApi writeEntranceLamp start data={data}"); var writeEntranceLamp = PlcMgr.WriteEntranceLamp(data); Log.Info($"PlcApi writeEntranceLamp resp={writeEntranceLamp}"); return writeEntranceLamp; @@ -82,6 +83,7 @@ public class PlcApi /// public static bool WriteExistLamp(ushort data) { + Log.Info($"PlcApi WriteExistLamp start data={data}"); var writeExistLamp = PlcMgr.WriteExistLamp(data); Log.Info($"PlcApi WriteExistLamp resp={writeExistLamp}"); return writeExistLamp; @@ -95,6 +97,7 @@ public class PlcApi /// public static bool DistributeSelectPack(string inBinNo, string outBinNo) { + Log.Info($"PlcApi DistributeSelectPack start inBinNo={inBinNo} outBinNo={outBinNo}"); return PlcMgr.DistributeBinNo(inBinNo, outBinNo); } @@ -132,6 +135,7 @@ public class PlcApi /// public static bool HoldOn() { + Log.Info($"PlcApi start HoldOn "); var holdOn = PlcMgr.HoldOn(); Log.Info($"PlcApi HoldOn resp={holdOn}"); return holdOn; @@ -144,6 +148,7 @@ public class PlcApi /// public static ushort ChannelStatus() { + Log.Info($"PlcApi start ChannelStatus "); PlcMgr.ResetPlc(); var channelStatus = PlcMgr.ChannelStatus(); Log.Info($"PlcApi ChannelStatus resp= {channelStatus}"); @@ -157,6 +162,7 @@ public class PlcApi /// 6未连接 public static int ReadPlcTaskStatus() { + Log.Info($"PlcApi start ReadPlcTaskStatus "); var readPlcTaskStatus = PlcMgr.ReadPlcTaskStatus(); Log.Info($"PlcApi ReadPlcTaskStatus resp= {readPlcTaskStatus}"); return readPlcTaskStatus; diff --git a/Service/Execute/Api/TboxApi.cs b/Service/Execute/Api/TboxApi.cs index 41e4a89..ab80155 100644 --- a/Service/Execute/Api/TboxApi.cs +++ b/Service/Execute/Api/TboxApi.cs @@ -7,7 +7,7 @@ namespace Service.Execute.Api; public class TBoxApi { - private static readonly ILog Log = LogManager.GetLogger("TBoxApi"); + private static readonly ILog Log = LogManager.GetLogger("TboxApi"); private static readonly string BASE_URL = "http://localhost:5036"; @@ -21,7 +21,7 @@ public class TBoxApi public static async Task GetCarInfo(string carNo) { - Log.Info(" TBoxApi GetCarInfo"); + Log.Info($" TBoxApi GetCarInfo carNo={carNo}"); string url = BASE_URL + "/getCarInfo/" + carNo; try { @@ -62,7 +62,7 @@ public class TBoxApi public static async Task IsConnected(string carNo) { - Log.Info("IsConnected"); + Log.Info($"IsConnected carNo={carNo}"); string url = BASE_URL + "/getCarInfo/"+carNo; try { @@ -71,6 +71,7 @@ public class TBoxApi if (!String.IsNullOrWhiteSpace(s)) { tboxCarInfoModel = JsonConvert.DeserializeObject(s); + Log.Info($"IsConnected resp={tboxCarInfoModel}"); } Log.Info($"GetCarInfo resp = {tboxCarInfoModel}"); @@ -146,7 +147,7 @@ public class TBoxApi public static async Task> GetCarInfoList() { - Log.Info(" TBoxApi GetCarInfoList start"); + Log.Info(" TBoxApi GetCarInfoList start "); string url = BASE_URL + "/getCarInfoList" ; try {