From 6ba4f07e9b5f2ad91bf2096568855f80f58855f6 Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Thu, 14 Sep 2023 14:12:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=95=86=E6=88=B7=E5=85=A5?= =?UTF-8?q?=E9=A9=BB=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index 079ddbef..2df4e11b 100644 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -1355,7 +1355,8 @@ class Auth extends BaseController //同步商户状态信息 public function merchantStatus($id) { - Log::info("接收到同步商户状态HOST:" . request()->url()); + Log::info("接收到同步商户状态HOST:" . 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])) return app('json')->fail('数据不存在');