From dd06a37c5c3249db1b6d51d32782e7f027baf7c7 Mon Sep 17 00:00:00 2001 From: 천호석 <g> Date: 월, 22 5월 2023 16:12:48 +0900 Subject: [PATCH] Vision send, receive 로그 추가. --- SA_LTT_UI/SA_LTT/Log/EquipmentLogManager.cs | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/SA_LTT_UI/SA_LTT/Log/EquipmentLogManager.cs b/SA_LTT_UI/SA_LTT/Log/EquipmentLogManager.cs index d5722b1..0634a32 100644 --- a/SA_LTT_UI/SA_LTT/Log/EquipmentLogManager.cs +++ b/SA_LTT_UI/SA_LTT/Log/EquipmentLogManager.cs @@ -36,7 +36,7 @@ LogCreater _preAlignLog = new LogCreater("PreAlign", s_preAlignLogPath); LogCreater _energyMeterLog = new LogCreater("EnergyMeter", s_energyMeterLogPath); LogCreater _energyMeasureLog = new LogCreater("EnergyMeasure", s_energyMeasureLogPath); - + LogCreater _visionLog = new LogCreater("Vision", s_visionLogPath); private EquipmentLogManager() { @@ -57,6 +57,7 @@ public static readonly string s_preAlignLogPath = $@"D:\Log\PreAlign\"; public static readonly string s_energyMeterLogPath = $@"D:\Log\EnergyMeter\"; public static readonly string s_energyMeasureLogPath = $@"D:\Log\EnergyMeasure\"; + public static readonly string s_visionLogPath = $@"D:\Log\Vision\"; public void WriteExceptionLog(string message) { @@ -118,5 +119,10 @@ { _energyMeasureLog.WriteLog(message); } + + public void WriteVisionLog(string message) + { + _visionLog.WriteLog(message); + } } } -- Gitblit v1.9.3