Browse Source

删除重复日志

欧阳劲驰 2 months ago
parent
commit
d07e33f4d1

+ 0 - 8
src/main/java/com/shkpr/service/alambizplugin/components/checker/IsolatedLinesFinder.java

@@ -59,15 +59,7 @@ public class IsolatedLinesFinder {
         //分组线
         List<List<GisSurveySystemCheckElement>> groupElements = unionFind.groupLines(lines);
 
-        long end = System.currentTimeMillis();
-        LogPrintMgr.getInstance().printLogMsg(LogLevelFlag.LOG_INFO, mBizType, mStrClassName
-                , String.format(
-                        "结束执行寻找孤立线,用时(毫秒):%d"
-                        , (end - begin)
-                )
-        );
         return new AsyncResult<>(createResult(groupElements, systemCheckId, begin));
-
     }
 
     /**