Merge remote-tracking branch 'origin/hotfix-20240513' into hotfix-20240513

This commit is contained in:
yangqicheng 2024-05-13 21:00:20 +08:00
commit e21b646b6a
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ public class EngineTaskEventListener implements TaskListener {
default:
}
});
log.info("StopWatch '" + stopWatch.currentTaskName() + "': running time = " + stopWatch.getTotalTimeSeconds() + " s,processInstanceId: {}", delegateTask.getProcessInstanceId());
log.info("StopWatch '" + stopWatch.getLastTaskName() + "': running time = " + stopWatch.getTotalTimeSeconds() + " s");
stopWatch.stop();
}

View File

@ -76,7 +76,7 @@ public class MessagePushProcessEventListener extends AbstractBpmnEventListener<P
MessagePushEventBuilder.createEvent(MessagePushEventType.PENDING_COMPLETE, null, noticeConfig,
event.getProcessInstanceId(), null, null);
log.info("发送完成待办的消息: {}", JSONUtil.toJsonStr(messagePushEvent));
log.info("发送完成实例下所有待办的消息: {}", JSONUtil.toJsonStr(messagePushEvent));
eventDispatcher.dispatchEvent(messagePushEvent, processEngineConfiguration.getEngineCfgKey());
if (Objects.nonNull(noticeConfig.getCarbonCopy())) {