From 9fa896f8a9d444db5184a5d0399a2e35f218d0d2 Mon Sep 17 00:00:00 2001 From: xxe Date: Wed, 19 Oct 2022 15:10:02 +0800 Subject: [PATCH] 1 --- HKCardOUT/ViewModels/RootViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HKCardOUT/ViewModels/RootViewModel.cs b/HKCardOUT/ViewModels/RootViewModel.cs index c33b38d..d78d783 100644 --- a/HKCardOUT/ViewModels/RootViewModel.cs +++ b/HKCardOUT/ViewModels/RootViewModel.cs @@ -80,7 +80,7 @@ namespace HKCardOUT.ViewModels var res = UHF_RS485_Helper.GetInstance().ReadCard(item.Address.AsInt()); if (res != null) { - Debug.WriteLine($"卡号地址:{res.Address}----------卡号数据:{res.ResData}"); + HKLog.HKLogImport.WriteInfo($"卡号地址:{res.Address}----------卡号数据:{res.ResData}"); if (!res.ResData.IsMatch(new Regex("0{20}"))) ReadFunc?.Invoke(res); }