From 360fe689b1df765ca6754d32921c1ee18f9e9c00 Mon Sep 17 00:00:00 2001 From: xubinbin <1323875150@qq.com> Date: 星期二, 12 十二月 2023 16:41:15 +0800 Subject: [PATCH] 增加日志记录时的完全限定类名,用于定位日志位置。 ps:2023-12-12 16:30:58.779 [Thread-10] INFO --- gov.nist.javax.sip.stack.UDPMessageChannel : 81 Done processing MESSAGE sip:44010200492000000003@4401020049 SIP/2.0 日志中的“gov.nist.javax.sip.stack.UDPMessageChannel”内容 --- src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java b/src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java old mode 100644 new mode 100755 index d228787..ec2f3b2 --- a/src/main/java/com/genersoft/iot/vmp/utils/SystemInfoUtils.java +++ b/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.*; @@ -20,6 +23,8 @@ * 鍘熸枃鍑哄閾炬帴锛歨ttps://blog.csdn.net/xiaozhangnomoney/article/details/107769147 */ public class SystemInfoUtils { + + private final static Logger logger = LoggerFactory.getLogger(SystemInfoUtils.class); /** * 鑾峰彇cpu淇℃伅 @@ -73,7 +78,7 @@ 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); -- Gitblit v1.8.0