Przeglądaj źródła

设置消息回到

tuonina 5 lat temu
rodzic
commit
a8bfb3e0df

+ 1 - 1
tuon-qywx/src/main/kotlin/cn/tonyandmoney/tuon/qywx/controller/QywxController.kt

@@ -107,7 +107,7 @@ class QywxController {
                         @RequestParam("nonce") nonce: String,
                         @RequestParam("echostr") echostr: String): Mono<String> {
         return Mono.create {
-            logger.info(msgMarker,"signature:{},timestamp:{},nonce:{},echostr:{}")
+            logger.info(msgMarker,"signature:{},timestamp:{},nonce:{},echostr:{}",signature,timestamp,nonce,echostr)
             val utils = WXBizMsgCrypt(properties.token, properties.encodingAESKey, properties.corpid)
             it.success(utils.VerifyURL(signature, timestamp, nonce, echostr))
         }