From e20956bdfe032124cfa6a61abc78b16bf281bc56 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 09 Dec 2025 15:55:59 +0800
Subject: [PATCH] refactor(logging): 优化开仓和平仓队列的日志打印格式

---
 src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
index 842de88..265b41a 100644
--- a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
@@ -26,12 +26,15 @@
     @Override
     public boolean verifyCode(String account, String code) {
         String cacheCode = redisUtils.getString(AppContants.VERIFY_CODE_PREFIX + account);
-        log.info("---->{}", cacheCode);
         if (StrUtil.isBlank(cacheCode)) {
             return false;
         }
-
-        return code.equals(cacheCode);
+        if (code.equals(cacheCode)) {
+            redisUtils.del(AppContants.VERIFY_CODE_PREFIX + account);
+            return true;
+        } else {
+            return false;
+        }
     }
 
     @Override

--
Gitblit v1.9.1