From a42c3131bd358c3fc4d336259cce7e6837428863 Mon Sep 17 00:00:00 2001 From: "bryan.zhang" Date: Wed, 17 Jan 2018 20:21:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=8F=98access=E7=9A=84=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E8=AF=AD?= 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 57ba5c660..a72cb0d85 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ liteflow jar 4.0.0 - 1.2.15 + 1.2.16 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 aa5637c1f..fa8927e55 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("[{}]:[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); diff --git a/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java b/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java index f114e53ad..612d8d9b5 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("[{}]:[O]start component[{}] execution",slot.getRequestId(),this.getClass().getSimpleName()); slot.addStep(new CmpStep(nodeId, CmpStepType.START)); StopWatch stopWatch = new StopWatch(); stopWatch.start();