From d4ee0a18cb6b92b0c5e0cbec131f135ef9bb794a Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 07 Jan 2026 14:51:09 +0800
Subject: [PATCH] chore(log): 调整根日志级别从error到info

---
 src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
index 50bbccb..17a74be 100644
--- a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
@@ -28,7 +28,6 @@
      */
     @Override
     public PriorityBlockingQueue<AscBigDecimal> initWangGe(String markPx) {
-        log.info("网格初始化中");
         PriorityBlockingQueue<AscBigDecimal> queueAsc = WangGeListQueue.getQueueAsc();
         queueAsc.clear();
 
@@ -68,11 +67,10 @@
             }
 
             if (queueAsc.isEmpty()) {
-                log.info("网格初始化失败");
+                log.error("网格初始化失败");
                 return null;
             }
 
-            log.info("网格初始化成功");
             return queueAsc;
         } catch (NumberFormatException e) {
             log.error("解析价格参数失败", e);

--
Gitblit v1.9.1