소스 검색

enhancement #I7J1VJ 希望针对节点执行耗时的打印日志支持控制

everywhere.z 1 년 전
부모
커밋
c18f46ac48
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java

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

@@ -126,7 +126,7 @@ public abstract class NodeComponent {
 
 			stopWatch.stop();
 			final long timeSpent = stopWatch.getTotalTimeMillis();
-			LOG.debug("component[{}] finished in {} milliseconds", this.getDisplayName(), timeSpent);
+			LOG.info("component[{}] finished in {} milliseconds", this.getDisplayName(), timeSpent);
 
 			// 往CmpStep中放入时间消耗信息
 			cmpStep.setTimeSpent(timeSpent);