diff --git a/Modules/SicModules/PMs/PMModule.cs b/Modules/SicModules/PMs/PMModule.cs index 874aadb..19957c7 100644 --- a/Modules/SicModules/PMs/PMModule.cs +++ b/Modules/SicModules/PMs/PMModule.cs @@ -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; } }