mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
update app/util/ApiLogTool.php.
修复日志更新异常的BUG
This commit is contained in:
parent
7a2b5c326e
commit
d58f45086e
@ -99,7 +99,7 @@ class ApiLogTool {
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user