打印信息带上别名

This commit is contained in:
孙顺凯
2022-06-10 21:50:23 +08:00
parent 2a3bb59404
commit b9a6f49b3c

View File

@@ -126,7 +126,7 @@ public class Node implements Executable,Cloneable{
if (instance.isAccess()) {
//根据配置判断是否打印执行中的日志
if (BooleanUtil.isTrue(liteflowConfig.getPrintExecutionLog())){
LOG.info("[{}]:[O]start component[{}] execution",slot.getRequestId(),instance.getClass().getSimpleName());
LOG.info("[{}]:[O]start component[{}] [{}] execution",slot.getRequestId(),instance.getClass().getSimpleName(),instance.getName());
}
//这里开始进行重试的逻辑和主逻辑的运行