From 0146658c7c0d4194b27c70cca5cefec1adb168a1 Mon Sep 17 00:00:00 2001 From: "bryan.zhang" Date: Wed, 17 Jan 2018 20:05:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3isAccess=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/thebeastshop/liteflow/core/FlowExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java b/src/main/java/com/thebeastshop/liteflow/core/FlowExecutor.java index d01c46784..9a65f0441 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("[{}]:component[{}] do not have access",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("[{}]:component[{}] do not have access",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);