From bc1350318fc28f23b22a07d2e41c5e00c504ddaa Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 17 Jun 2021 14:24:08 +0800 Subject: [PATCH] modify --- src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java b/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java index 0da4642..af91983 100644 --- a/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java +++ b/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java @@ -37,13 +37,11 @@ // 可以操作 System.out.println("当前价格:" + price + "---正序---" + "队列价格:" + b.getValue().toPlainString() + " time:" + new Date()); while (queue.peek() != null && queue.peek().compareTo(now) <= 0) { - log.info("------->"); // 可以发送消息操作 list.add(queue.remove()); } } - log.info("---->{}", JSONObject.toJSONString(list)); if (CollectionUtils.isNotEmpty(list)) { dealAscPriceOrderAndSenMq(list, symbol); } @@ -88,6 +86,7 @@ for (AscBigDecimal asc : list) { String key = asc.getValue().toPlainString(); assert orderMap != null; + log.info("----->->{}, --> {}", JSONObject.toJSONString(orderMap), key); if (orderMap.containsKey(key)) { orderModelList.addAll(orderMap.get(key)); orderMap.remove(key); @@ -160,6 +159,7 @@ for (DescBigDecimal desc : list) { String key = desc.getValue().toPlainString(); assert orderMap != null; + log.info("----->->{}, --> {}", JSONObject.toJSONString(orderMap), key); if (orderMap.containsKey(key)) { orderModelList.addAll(orderMap.get(key)); orderMap.remove(key); -- Gitblit v1.9.1