From 41eb44130dfe9f10f8b964f7a9ce9da88e0c6814 Mon Sep 17 00:00:00 2001 From: "bryan.zhang" Date: Wed, 17 Jan 2018 20:12:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8F=90=E7=A4=BA=E6=96=87?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../java/com/thebeastshop/liteflow/core/FlowExecutor.java | 4 ++-- .../java/com/thebeastshop/liteflow/core/NodeComponent.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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();