feat(incompact) - 优化一些日志和文案

This commit is contained in:
wangli 2026-02-06 18:02:41 +08:00
parent 2964ad625b
commit 1eea58850d
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ public class EngineExecutionStartListener implements ExecutionListener {
log.info("查询是否是组织不存在,需要隐藏日志: {}", hiddenLog);
} catch (Exception e) {
// ignore
log.warn("查询组织不存在,需要隐藏日志异常: {}", e.getMessage(), e);
log.warn("查询需要隐藏日志标识异常: {}", e.getMessage(), e);
}
if (!Objects.equals(Boolean.TRUE, hiddenLog)) {
// 审批候选人为空时的兜底,

View File

@ -75,7 +75,7 @@ public class AutoOperatorEvent_101_Listener extends AbstractBpmnEventListener<Ta
Boolean hiddenLog = delegateTask.getVariable(TASK_LOG_NODE_HAS_BEEN_HIDDEN + userTask.getId(), Boolean.class);
if (Objects.equals(Boolean.TRUE, hiddenLog)) {
autoPass(delegateTask, null, "组织不存在时自动跳过");
log.info("AutoOperatorEventListener#onCreated...end:{}, processInstanceId:{}", delegateTask.getTaskDefinitionKey(), delegateTask.getProcessInstanceId());
log.info("AutoOperatorEventListener#onCreated, log hidden...end:{}, processInstanceId:{}", delegateTask.getTaskDefinitionKey(), delegateTask.getProcessInstanceId());
return;
}