Browse Source

规则日志打印取消

rengb 5 years atrás
parent
commit
fcf9106a84

+ 3 - 3
kernel/src/main/java/com/lantone/qc/kernel/catalogue/QCCatalogue.java

@@ -23,7 +23,7 @@ public class QCCatalogue {
     protected ThreadLocal<String> info = new ThreadLocal<String>();
 
     public void execute(InputInfo inputInfo, OutputInfo outputInfo) {
-        long t1 = System.currentTimeMillis();
+//        long t1 = System.currentTimeMillis();
         if (outputInfo.getResult().get(className) != null) {
             return;
         }
@@ -38,8 +38,8 @@ public class QCCatalogue {
             variablePreset("-1", "");
             log.error(e.getMessage() + "......类名:" + this.className);
         }
-        long t2 = System.currentTimeMillis();
-        log.error(inputInfo.getMedicalRecordInfoDoc().getStructureMap().get("behospitalCode") + "-----" + className + "(规则)  耗时:" + (t2 - t1));
+//        long t2 = System.currentTimeMillis();
+//        log.error(inputInfo.getMedicalRecordInfoDoc().getStructureMap().get("behospitalCode") + "-----" + className + "(规则)  耗时:" + (t2 - t1));
         insertOpt(outputInfo);
     }