From eefbe197d8d31adb5f9c7769d1987178eaf03ce3 Mon Sep 17 00:00:00 2001 From: "bryan.zhang" Date: Wed, 13 Dec 2017 19:42:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=AF=8F=E4=B8=AA=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E6=89=A7=E8=A1=8C=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java b/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java index a4552a299..e5cf999dc 100644 --- a/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java +++ b/src/main/java/com/thebeastshop/liteflow/core/NodeComponent.java @@ -32,6 +32,7 @@ public abstract class NodeComponent { private String nodeId; public void execute() throws Exception{ + LOG.info("start component[{}] execution",this.getClass().getSimpleName()); this.getSlot().addStep(new CmpStep(nodeId, CmpStepType.START)); StopWatch stopWatch = new StopWatch(); stopWatch.start();