Commit 3689850d authored by suhuiguang's avatar suhuiguang

1.安装告知更新冗余的装置名称

parent 079fe4fb
......@@ -60,7 +60,10 @@ public class RelationBizApplyUpdateListener {
}
private void processEvent(ChangeDataEvent event) {
changeUpdateHandlers.stream().filter(h -> h.supports(event)).forEach(h -> h.handle(event));
changeUpdateHandlers.stream().filter(h -> h.supports(event)).forEach(h -> {
log.info("处理器:{}", JSONObject.toJSONString(h));
h.handle(event);
});
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment