改变access的提示语

This commit is contained in:
bryan.zhang
2018-01-17 20:21:06 +08:00
parent 41eb44130d
commit a42c3131bd
3 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
<artifactId>liteflow</artifactId>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<version>1.2.15</version>
<version>1.2.16</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@@ -125,7 +125,7 @@ public class FlowExecutor {
break;
}
}else {
LOG.info("[{}]:[×]skip component[{}] execution",slot.getRequestId(),component.getClass().getSimpleName());
LOG.info("[{}]:[X]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("[{}]:[X]skip component[{}] execution",requestId,cmp.getClass().getSimpleName());
}
}catch(Exception e){
LOG.error("component [{}] execute cause error",node.getClazz(),e);

View File

@@ -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("[{}]:[O]start component[{}] execution",slot.getRequestId(),this.getClass().getSimpleName());
slot.addStep(new CmpStep(nodeId, CmpStepType.START));
StopWatch stopWatch = new StopWatch();
stopWatch.start();