ソースを参照

打印加密串

wuxw 2 年 前
コミット
f57022cf59
共有1 個のファイルを変更した1 個の追加0 個の削除を含む
  1. 1 0
      java110-core/src/main/java/com/java110/core/factory/AuthenticationFactory.java

+ 1 - 0
java110-core/src/main/java/com/java110/core/factory/AuthenticationFactory.java

@@ -284,6 +284,7 @@ public class AuthenticationFactory {
         reqInfo += "GET".equals(dataFlow.getRequestHeaders().get(CommonConstant.HTTP_METHOD)) ?
         reqInfo += "GET".equals(dataFlow.getRequestHeaders().get(CommonConstant.HTTP_METHOD)) ?
                 param : dataFlow.getReqData();
                 param : dataFlow.getReqData();
         reqInfo += dataFlow.getAppRoutes().get(0).getSecurityCode();
         reqInfo += dataFlow.getAppRoutes().get(0).getSecurityCode();
+        logger.debug("加密字符串={}",reqInfo);
 
 
         return md5(reqInfo);
         return md5(reqInfo);
     }
     }