mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-23 01:38:09 +08:00
更新提示文案
This commit is contained in:
@@ -125,7 +125,7 @@ public class FlowExecutor {
|
||||
break;
|
||||
}
|
||||
}else {
|
||||
LOG.info("[{}]:skip component[{}] execution",slot.getRequestId(),component.getClass().getSimpleName());
|
||||
LOG.info("[{}]:[×]skip component[{}] execution",slot.getRequestId(),component.getClass().getSimpleName());
|
||||
}
|
||||
}catch(Throwable t){
|
||||
if(component.isContinueOnError()){
|
||||
@@ -179,7 +179,7 @@ public class FlowExecutor {
|
||||
if(cmp.isAccess()) {
|
||||
cmp.execute();
|
||||
}else {
|
||||
LOG.info("[{}]:skip component[{}] execution",requestId,cmp.getClass().getSimpleName());
|
||||
LOG.info("[{}]:[×]skip component[{}] execution",requestId,cmp.getClass().getSimpleName());
|
||||
}
|
||||
}catch(Exception e){
|
||||
LOG.error("component [{}] execute cause error",node.getClazz(),e);
|
||||
|
||||
@@ -33,7 +33,7 @@ public abstract class NodeComponent {
|
||||
|
||||
public void execute() throws Exception{
|
||||
Slot slot = this.getSlot();
|
||||
LOG.info("[{}]:start component[{}] execution",slot.getRequestId(),this.getClass().getSimpleName());
|
||||
LOG.info("[{}]:[√]start component[{}] execution",slot.getRequestId(),this.getClass().getSimpleName());
|
||||
slot.addStep(new CmpStep(nodeId, CmpStepType.START));
|
||||
StopWatch stopWatch = new StopWatch();
|
||||
stopWatch.start();
|
||||
|
||||
Reference in New Issue
Block a user