From d58f45086ef04089e56f1780d01418424cbdbd71 Mon Sep 17 00:00:00 2001 From: Zhao <756958008@qq.com> Date: Tue, 22 Dec 2020 12:13:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?update=20app/util/ApiLogTool.php.=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A5=E5=BF=97=E6=9B=B4=E6=96=B0=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/util/ApiLogTool.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/util/ApiLogTool.php b/app/util/ApiLogTool.php index b2aa518..67dc21c 100644 --- a/app/util/ApiLogTool.php +++ b/app/util/ApiLogTool.php @@ -99,7 +99,7 @@ class ApiLogTool { * @author zhaoxiang */ public static function save(): void { - $logPath = Env::get('runtime_path') . 'ApiLog' . DIRECTORY_SEPARATOR; + $logPath = runtime_path() . 'ApiLog' . DIRECTORY_SEPARATOR; $logStr = implode(self::$separator, array( '[' . date('Y-m-d H:i:s') . ']', self::$apiInfo, @@ -123,9 +123,14 @@ class ApiLogTool { */ public static function writeLog(string $log, string $type = 'sql', string $filePath = ''): void { if (!$filePath) { - $filePath = Env::get('runtime_path') . DIRECTORY_SEPARATOR; + $filePath = runtime_path() . $type . DIRECTORY_SEPARATOR; + } else { + $filePath = $filePath . $type . DIRECTORY_SEPARATOR; + } + $filename = $filePath . date("YmdH") . ".log"; + if (!file_exists($filePath)) { + mkdir($filePath, 0755, true); } - $filename = $filePath . $type . DIRECTORY_SEPARATOR . date("YmdH") . ".log"; @$handle = fopen($filename, "a+"); @fwrite($handle, date('Y-m-d H:i:s') . "\t" . $log . "\r\n"); @fclose($handle); From 1fbc042e19b1e8ae76fb52a8975cc08bee66ef1b Mon Sep 17 00:00:00 2001 From: ufec Date: Wed, 27 Jan 2021 10:56:07 +0800 Subject: [PATCH 2/2] =?UTF-8?q?:bug:=E4=BC=A0=E5=8F=82=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/middleware/ApiLog.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/middleware/ApiLog.php b/app/middleware/ApiLog.php index 3b449ec..cce0a6a 100644 --- a/app/middleware/ApiLog.php +++ b/app/middleware/ApiLog.php @@ -19,11 +19,11 @@ class ApiLog { unset($requestInfo['API_CONF_DETAIL']); unset($requestInfo['APP_CONF_DETAIL']); - ApiLogTool::setApiInfo($request->API_CONF_DETAIL); - ApiLogTool::setAppInfo($request->APP_CONF_DETAIL); + ApiLogTool::setApiInfo((array)$request->API_CONF_DETAIL); + ApiLogTool::setAppInfo((array)$request->APP_CONF_DETAIL); ApiLogTool::setRequest($requestInfo); ApiLogTool::setResponse($response->getData(), isset($response->getData()['code']) ? strval($response->getData()['code']) : 'null'); - ApiLogTool::setHeader($request->header()); + ApiLogTool::setHeader((array)$request->header()); ApiLogTool::save(); return $response;