update - 添加日志

This commit is contained in:
wangli 2023-12-07 11:33:24 +08:00
parent 5fbcb38c42
commit 82113c01c4

View File

@ -204,6 +204,12 @@ public class RocketMqMessagePushEventListener implements BpmnMessagePushEventLis
// 传递业务的参数
REMOVE_KEYS.forEach(originVariables::remove);
if (log.isDebugEnabled()) {
log.debug("流程实例的参数: {}", JSON.toJSONString(originVariables));
}
if (CollectionUtils.isEmpty(originVariables)) {
return variables;
}
originVariables.forEach((k, v) -> {
REMOVE_KEYS.forEach(key -> {
if (k.contains(key)) {