From 73d1b473a8ee352070fdbb68b53cf2a9b3a50572 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 08 Jan 2026 15:49:52 +0800
Subject: [PATCH] fix(okxNewPrice): 修复网格列表枚举中的价格范围配置

---
 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