Browse Source

优化NodeComponent开始时的打印日志的时机

everywhere.z 5 months ago
parent
commit
dda3172b1f

+ 2 - 0
liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java

@@ -99,6 +99,8 @@ public abstract class NodeComponent{
 		stopWatch.start();
 
 		try {
+			LOG.info("[O]start component[{}] execution", self.getDisplayName());
+
 			// 前置处理
 			self.beforeProcess();