xieruidong 2 years ago
parent
commit
9d93d98fe8
1 changed files with 4 additions and 1 deletions
  1. 4 1
      application/index/controller/Payment.php

+ 4 - 1
application/index/controller/Payment.php

@@ -27,7 +27,10 @@ class Payment extends Frontend
             Db::rollback();
             $this->result([],400);
         }
-        user_log("payment/{$payment['order_no']}",input());
+        user_log("payment/{$payment['order_no']}",[
+            'input'=>input(),
+            '$_post'=>$_POST
+        ]);
         $service=new PayReturnService();
         $service->setPayment($payment);
         list($isPay,$succ)=$service->process();