From b0058752d40c96f6cf90c898f4056cb57ca4eac3 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Thu, 30 Nov 2023 12:37:40 +0800 Subject: [PATCH] =?UTF-8?q?debug=20=E5=85=85=E5=80=BC=E5=9B=9E=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/service/pay/WeChatPayService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/common/service/pay/WeChatPayService.php b/app/common/service/pay/WeChatPayService.php index e695208cc..0a8ff788f 100755 --- a/app/common/service/pay/WeChatPayService.php +++ b/app/common/service/pay/WeChatPayService.php @@ -376,6 +376,7 @@ class WeChatPayService extends BasePayService switch ($attach) { case 'recharge': $order = RechargeOrder::where(['sn' => $message['out_trade_no']])->findOrEmpty(); + Log::info('wechat pay notify: ' . var_export($order, true)); if($order->isEmpty() || $order->pay_status == PayEnum::ISPAID) { return true; }