From 245ab8e2ccae3ba5c2a5117e2a32505baa6bca2b Mon Sep 17 00:00:00 2001 From: ASUS <515617283@qq.com> Date: Wed, 3 Dec 2025 11:41:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=B7=E6=B1=82=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/controller/ApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/controller/ApiController.php b/app/common/controller/ApiController.php index 9d0a378..a06a035 100644 --- a/app/common/controller/ApiController.php +++ b/app/common/controller/ApiController.php @@ -13,7 +13,7 @@ class ApiController public function __construct() { - Log::info('请求数据---' . json_encode(request()->post())); + Log::info('请求路由---' . request()->controller . '\\' . request()->action . '-----请求数据---' . json_encode(request()->post())); $user_info = Base::getUser(request()->header('token')); $this->uid = $user_info['uid']; $this->user_type = $user_info['user_type'];