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

This commit is contained in:
everywhere.z
2023-07-19 18:45:47 +08:00
parent 9f07c3583a
commit c18f46ac48

View File

@@ -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);