From b39b9ca10bd4bb101384723271ccf57d99552ad6 Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Tue, 19 Sep 2023 13:51:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 2 +- app/controller/api/store/merchant/MerchantIntention.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index f2a9db62..6243be08 100644 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -1357,7 +1357,7 @@ class Auth extends BaseController public function merchantStatus($id) { // business_status 交易申请状态:0未申请 1申请中 2申请通过 3申请拒绝 - Log::info("同步商户申请状态HOST:" . request()->host() . request()->url()); + Log::info("同步商户申请状态URL:" . request()->host() . request()->url()); Log::info("同步商户申请状态数据:" . json_encode(request()->param())); $repository = app()->make(MerchantIntentionRepository::class); if (!$repository->getWhereCount(['mer_intention_id' => $id, 'is_del' => 0])) diff --git a/app/controller/api/store/merchant/MerchantIntention.php b/app/controller/api/store/merchant/MerchantIntention.php index bd3ff505..6917d72c 100644 --- a/app/controller/api/store/merchant/MerchantIntention.php +++ b/app/controller/api/store/merchant/MerchantIntention.php @@ -148,7 +148,7 @@ class MerchantIntention extends BaseController //发送商户入驻申请 public function sendMerIntentionApply($data, $postUrl) { - Log::info("商户申请HOST: {$postUrl}"); + Log::info("商户申请URL: {$postUrl}"); Log::info("发送商户申请信息: " . json_encode($data)); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $postUrl);