@@ -767,27 +767,27 @@ nErrorEnd = self.nOffsetWithinParagraph + self.lToken[nTokenErrorEnd]["nEnd"] if nErrorStart not in dError or eAct[2] > dPriority.get(nErrorStart, -1): dError[nErrorStart] = self.createError(sWhat, nTokenOffset, nTokenErrorStart, nErrorStart, nErrorEnd, sLineId, sRuleId, True, eAct[3], eAct[4], bShowRuleId, "notype", bContext) dPriority[nErrorStart] = eAct[2] if bDebug: - print("-", sRuleId, dError[nErrorStart]) + print("ERROR:", sRuleId, dError[nErrorStart]) elif cActionType == "~": # text processor nEndToken = (nTokenOffset + eAct[1]) if eAct[1] else nLastToken self._tagAndPrepareTokenForRewriting(sWhat, nTokenOffset + eAct[0], nEndToken, bDebug) if bDebug: - print("~", sRuleId) + print("RW:", sRuleId) bChange = True elif cActionType == "=": # disambiguation globals()[sWhat](self.lToken, nTokenOffset) if bDebug: - print("=", sRuleId) + print("DA:", sRuleId) elif cActionType == ">": # we do nothing, this test is just a condition to apply all following actions if bDebug: - print(">", sRuleId) + print(">>>", sRuleId) pass elif cActionType == "/": # tags nTokenTag = nTokenOffset + eAct[0] if sWhat not in self.dTags: