diff --git a/pom.xml b/pom.xml
index 3c05f1230..57ba5c660 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
liteflow
jar
4.0.0
- 1.2.14
+ 1.2.15
UTF-8
diff --git a/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java b/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java
index 9a65f0441..aa5637c1f 100644
--- a/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java
+++ b/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java
@@ -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);
diff --git a/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java b/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java
index 87b3dd63f..f114e53ad 100644
--- a/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java
+++ b/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java
@@ -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();