1.增加Warning日志输出

This commit is contained in:
HCL 2024-05-06 13:44:35 +08:00
parent 277212c292
commit 40fd197e9d
1 changed files with 3 additions and 0 deletions

View File

@ -1616,6 +1616,7 @@ namespace SicModules.PMs
if (!_pmInterLock.DoPreprocessRunning)
{
PostMsg(MSG.Abort);
EV.PostWarningLog(Module, "For abnormal PreProcess exit, please check the interlocking conditions.工艺异常退出,请检查互锁条件");
return false;
}
}
@ -1625,6 +1626,7 @@ namespace SicModules.PMs
if(!_pmInterLock.DoProcessRunning)
{
PostMsg(MSG.Abort);
EV.PostWarningLog(Module, "For abnormal Process exit, please check the interlocking conditions.工艺异常退出,请检查互锁条件");
return false;
}
}
@ -1634,6 +1636,7 @@ namespace SicModules.PMs
if (!_pmInterLock.DoPostProcessRunning)
{
PostMsg(MSG.Abort);
EV.PostWarningLog(Module, "For abnormal PostProcess exit, please check the interlocking conditions.工艺异常退出,请检查互锁条件");
return false;
}
}