From 7e456badb43245198687381714657b9585eb6c19 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Sat, 09 May 2026 15:03:08 +0800
Subject: [PATCH] fix(gateApi): 修复多队列日志打印错误

---
 src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java b/src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
index cc9a1d9..cd4f0b9 100644
--- a/src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
+++ b/src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
@@ -409,7 +409,7 @@
                 }
             }
         }
-        log.info("[Gate] 多队列:{}", shortPriceQueue);
+        log.info("[Gate] 多队列:{}", longPriceQueue);
         if (matched.isEmpty()) {
             log.info("[Gate] 多仓队列未触发,  当前价:{}", currentPrice);
             return;
@@ -432,7 +432,7 @@
             }
             longPriceQueue.sort(BigDecimal::compareTo);
 
-            log.info("[Gate] 多队列:{}", shortPriceQueue);
+            log.info("[Gate] 多队列:{}", longPriceQueue);
         }
 
         synchronized (shortPriceQueue) {

--
Gitblit v1.9.1