mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
Merge branch 'master' of gitee.com:apiadmin/ApiAdmin
This commit is contained in:
commit
792c743fd7
@ -19,11 +19,11 @@ class ApiLog {
|
|||||||
unset($requestInfo['API_CONF_DETAIL']);
|
unset($requestInfo['API_CONF_DETAIL']);
|
||||||
unset($requestInfo['APP_CONF_DETAIL']);
|
unset($requestInfo['APP_CONF_DETAIL']);
|
||||||
|
|
||||||
ApiLogTool::setApiInfo($request->API_CONF_DETAIL);
|
ApiLogTool::setApiInfo((array)$request->API_CONF_DETAIL);
|
||||||
ApiLogTool::setAppInfo($request->APP_CONF_DETAIL);
|
ApiLogTool::setAppInfo((array)$request->APP_CONF_DETAIL);
|
||||||
ApiLogTool::setRequest($requestInfo);
|
ApiLogTool::setRequest($requestInfo);
|
||||||
ApiLogTool::setResponse($response->getData(), isset($response->getData()['code']) ? strval($response->getData()['code']) : 'null');
|
ApiLogTool::setResponse($response->getData(), isset($response->getData()['code']) ? strval($response->getData()['code']) : 'null');
|
||||||
ApiLogTool::setHeader($request->header());
|
ApiLogTool::setHeader((array)$request->header());
|
||||||
ApiLogTool::save();
|
ApiLogTool::save();
|
||||||
|
|
||||||
return $response;
|
return $response;
|
||||||
|
@ -99,7 +99,7 @@ class ApiLogTool {
|
|||||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||||
*/
|
*/
|
||||||
public static function save(): void {
|
public static function save(): void {
|
||||||
$logPath = Env::get('runtime_path') . 'ApiLog' . DIRECTORY_SEPARATOR;
|
$logPath = runtime_path() . 'ApiLog' . DIRECTORY_SEPARATOR;
|
||||||
$logStr = implode(self::$separator, array(
|
$logStr = implode(self::$separator, array(
|
||||||
'[' . date('Y-m-d H:i:s') . ']',
|
'[' . date('Y-m-d H:i:s') . ']',
|
||||||
self::$apiInfo,
|
self::$apiInfo,
|
||||||
@ -123,9 +123,14 @@ class ApiLogTool {
|
|||||||
*/
|
*/
|
||||||
public static function writeLog(string $log, string $type = 'sql', string $filePath = ''): void {
|
public static function writeLog(string $log, string $type = 'sql', string $filePath = ''): void {
|
||||||
if (!$filePath) {
|
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+");
|
@$handle = fopen($filename, "a+");
|
||||||
@fwrite($handle, date('Y-m-d H:i:s') . "\t" . $log . "\r\n");
|
@fwrite($handle, date('Y-m-d H:i:s') . "\t" . $log . "\r\n");
|
||||||
@fclose($handle);
|
@fclose($handle);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user