Browse Source

优化线程休眠异常日志

648540858 3 years ago
parent
commit
c62a8986dd
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java

+ 6 - 1
src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java

@@ -1,5 +1,8 @@
 package com.genersoft.iot.vmp.utils;
 
+import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookListener;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.util.ObjectUtils;
 import oshi.SystemInfo;
 import oshi.hardware.*;
@@ -21,6 +24,8 @@ import java.util.concurrent.TimeUnit;
  */
 public class SystemInfoUtils {
 
+    private final static Logger logger = LoggerFactory.getLogger(SystemInfoUtils.class);
+
     /**
      * 获取cpu信息
      * @return
@@ -73,7 +78,7 @@ public class SystemInfoUtils {
         try {
             Thread.sleep(1000);
         } catch (InterruptedException e) {
-            throw new RuntimeException(e);
+            logger.error("[线程休眠失败] : {}", e.getMessage());
         }
         List<NetworkIF> afterNetworkIFs = hal.getNetworkIFs();
         NetworkIF afterNet = afterNetworkIFs.get(afterNetworkIFs.size() - 1);