diff --git a/lover/routers/__pycache__/config.cpython-314.pyc b/lover/routers/__pycache__/config.cpython-314.pyc
index c24a972..69aea36 100644
Binary files a/lover/routers/__pycache__/config.cpython-314.pyc and b/lover/routers/__pycache__/config.cpython-314.pyc differ
diff --git a/lover/routers/config.py b/lover/routers/config.py
index 0cb3d69..1382e25 100644
--- a/lover/routers/config.py
+++ b/lover/routers/config.py
@@ -328,3 +328,167 @@ def list_available_voices_for_lover(
),
msg="获取可用音色成功",
)
+
+
+# ===== 音色克隆相关 =====
+
+class VoiceCloneRequest(BaseModel):
+ audio_url: str
+ voice_name: str
+ gender: str # male/female
+
+ model_config = ConfigDict(from_attributes=True)
+
+
+class VoiceCloneResponse(BaseModel):
+ voice_id: str
+ status: str
+ message: str
+
+ model_config = ConfigDict(from_attributes=True)
+
+
+class VoiceCloneStatusResponse(BaseModel):
+ voice_id: str
+ status: str # PENDING, OK, UNDEPLOYED, FAILED
+ voice_library_id: Optional[int] = None
+
+ model_config = ConfigDict(from_attributes=True)
+
+
+@router.post("/voices/clone", response_model=ApiResponse[VoiceCloneResponse])
+def clone_voice(
+ payload: VoiceCloneRequest,
+ db: Session = Depends(get_db),
+ user: AuthedUser = Depends(get_current_user),
+):
+ """
+ 克隆音色:用户上传音频文件,系统调用 CosyVoice 克隆音色
+ """
+ from ..cosyvoice_clone import create_voice_from_url
+
+ # 验证音色名称长度(CosyVoice 限制 prefix <= 10 字符)
+ if len(payload.voice_name) > 10:
+ raise HTTPException(status_code=400, detail="音色名称不能超过10个字符")
+
+ # 验证性别
+ if payload.gender not in ["male", "female"]:
+ raise HTTPException(status_code=400, detail="性别必须是 male 或 female")
+
+ try:
+ # 调用克隆服务
+ voice_id = create_voice_from_url(
+ audio_url=payload.audio_url,
+ prefix=payload.voice_name,
+ target_model="cosyvoice-v2"
+ )
+
+ return success_response(
+ VoiceCloneResponse(
+ voice_id=voice_id,
+ status="PENDING",
+ message="音色克隆任务已创建,请稍后查询状态"
+ )
+ )
+ except Exception as e:
+ raise HTTPException(status_code=500, detail=f"克隆失败: {str(e)}")
+
+
+@router.get("/voices/clone/{voice_id}/status", response_model=ApiResponse[VoiceCloneStatusResponse])
+def get_clone_status(
+ voice_id: str,
+ db: Session = Depends(get_db),
+ user: AuthedUser = Depends(get_current_user),
+):
+ """
+ 查询克隆音色的状态
+ """
+ from ..cosyvoice_clone import query_voice
+
+ try:
+ info = query_voice(voice_id)
+ status = info.get("status", "UNKNOWN")
+
+ # 如果状态是 OK,检查是否已保存到数据库
+ voice_library_id = None
+ if status == "OK":
+ existing = (
+ db.query(VoiceLibrary)
+ .filter(VoiceLibrary.voice_code == voice_id)
+ .first()
+ )
+ if existing:
+ voice_library_id = existing.id
+
+ return success_response(
+ VoiceCloneStatusResponse(
+ voice_id=voice_id,
+ status=status,
+ voice_library_id=voice_library_id
+ )
+ )
+ except Exception as e:
+ raise HTTPException(status_code=500, detail=f"查询失败: {str(e)}")
+
+
+@router.post("/voices/clone/{voice_id}/save", response_model=ApiResponse[dict])
+def save_cloned_voice(
+ voice_id: str,
+ db: Session = Depends(get_db),
+ user: AuthedUser = Depends(get_current_user),
+):
+ """
+ 将克隆成功的音色保存到音色库
+ """
+ from ..cosyvoice_clone import query_voice
+
+ try:
+ # 查询音色状态
+ info = query_voice(voice_id)
+ status = info.get("status")
+
+ if status != "OK":
+ raise HTTPException(status_code=400, detail=f"音色状态为 {status},无法保存")
+
+ # 检查是否已存在
+ existing = (
+ db.query(VoiceLibrary)
+ .filter(VoiceLibrary.voice_code == voice_id)
+ .first()
+ )
+ if existing:
+ return success_response({"voice_library_id": existing.id, "message": "音色已存在"})
+
+ # 获取音色信息
+ voice_name = info.get("name", "克隆音色")
+
+ # 获取用户的恋人信息以确定性别
+ lover = db.query(Lover).filter(Lover.user_id == user.id).first()
+ gender = lover.gender if lover else "female"
+
+ # 保存到数据库
+ new_voice = VoiceLibrary(
+ name=voice_name,
+ gender=gender,
+ style_tag="克隆音色",
+ avatar_url=None,
+ sample_audio_url=None,
+ tts_model_id="cosyvoice-v2",
+ is_default=False,
+ voice_code=voice_id,
+ is_owned=True,
+ price_gold=0
+ )
+ db.add(new_voice)
+ db.flush()
+
+ return success_response({
+ "voice_library_id": new_voice.id,
+ "message": "音色保存成功"
+ })
+
+ except HTTPException:
+ raise
+ except Exception as e:
+ db.rollback()
+ raise HTTPException(status_code=500, detail=f"保存失败: {str(e)}")
diff --git a/xuniYou/pages/chat/index.vue b/xuniYou/pages/chat/index.vue
index c60f94b..89aca6d 100644
--- a/xuniYou/pages/chat/index.vue
+++ b/xuniYou/pages/chat/index.vue
@@ -994,8 +994,9 @@
});
},
back() {
- uni.navigateBack({
- delta: 1,
+ // 跳转到主页(使用 reLaunch 清空页面栈)
+ uni.reLaunch({
+ url: '/pages/index/index'
});
},
setUp() {
diff --git a/xuniYou/pages/create/timbre.vue b/xuniYou/pages/create/timbre.vue
index f231160..f90a3d5 100644
--- a/xuniYou/pages/create/timbre.vue
+++ b/xuniYou/pages/create/timbre.vue
@@ -5,6 +5,12 @@
{{ voicesInfo }}
+
+
+
+ 🎤 克隆我的音色
+
+
@@ -37,6 +43,42 @@
+
+
+
+
+ 克隆音色
+ 上传一段清晰的音频(至少3秒),AI将克隆您的音色
+
+
+
+
+
+
+ 📁 点击选择音频文件
+ 支持 mp3、wav 格式
+
+
+ ✅ {{ audioFile.name }}
+
+
+
+
+ {{ cloneStatusText }}
+
+
+
+ 取消
+
+ {{ cloning ? '克隆中...' : '开始克隆' }}
+
+
+
+
@@ -64,9 +106,18 @@ export default {
voice_id: '',
},
selectedItemIndex: -1, // 默认不选择任何项
- configVoicesList: [],
+ configVoicesList: { voices: [] }, // 修复:初始化为对象
voicesInfo: '',
currentAudioContext: null, // 添加当前音频上下文实例
+ // 克隆音色相关
+ cloneModalVisible: false,
+ cloneVoiceName: '',
+ audioFile: null,
+ audioUrl: '',
+ cloning: false,
+ cloneStatus: '',
+ cloneVoiceId: '',
+ baseURLPy: 'http://127.0.0.1:8000',
}
},
onLoad(options) {
@@ -215,6 +266,247 @@ export default {
console.log(this.form)
this.loverVoice()
}
+ },
+
+ // ===== 克隆音色相关方法 =====
+ showCloneModal() {
+ this.cloneModalVisible = true;
+ this.cloneVoiceName = '';
+ this.audioFile = null;
+ this.audioUrl = '';
+ this.cloneStatus = '';
+ },
+
+ cancelClone() {
+ this.cloneModalVisible = false;
+ this.cloning = false;
+ },
+
+ chooseAudio() {
+ uni.chooseFile({
+ count: 1,
+ extension: ['.mp3', '.wav', '.m4a'],
+ success: (res) => {
+ this.audioFile = {
+ path: res.tempFilePaths[0],
+ name: res.tempFiles[0].name || '音频文件'
+ };
+ console.log('选择的音频:', this.audioFile);
+ },
+ fail: (err) => {
+ console.error('选择文件失败:', err);
+ uni.showToast({
+ title: '选择文件失败',
+ icon: 'none'
+ });
+ }
+ });
+ },
+
+ async startClone() {
+ if (this.cloning) return;
+
+ if (!this.cloneVoiceName.trim()) {
+ uni.showToast({
+ title: '请输入音色名称',
+ icon: 'none'
+ });
+ return;
+ }
+
+ if (!this.audioFile) {
+ uni.showToast({
+ title: '请选择音频文件',
+ icon: 'none'
+ });
+ return;
+ }
+
+ this.cloning = true;
+ this.cloneStatus = 'uploading';
+
+ try {
+ // 1. 上传音频文件到 OSS
+ const uploadResult = await this.uploadAudio();
+ if (!uploadResult) {
+ throw new Error('上传失败');
+ }
+
+ this.audioUrl = uploadResult;
+ this.cloneStatus = 'cloning';
+
+ // 2. 调用克隆 API
+ const cloneResult = await this.callCloneAPI();
+ if (!cloneResult) {
+ throw new Error('克隆失败');
+ }
+
+ this.cloneVoiceId = cloneResult.voice_id;
+ this.cloneStatus = 'polling';
+
+ // 3. 轮询状态
+ await this.pollCloneStatus();
+
+ } catch (error) {
+ console.error('克隆失败:', error);
+ this.cloneStatus = 'failed';
+ this.cloning = false;
+ }
+ },
+
+ uploadAudio() {
+ return new Promise((resolve, reject) => {
+ uni.uploadFile({
+ url: this.baseURL + '/api/common/upload',
+ filePath: this.audioFile.path,
+ name: 'file',
+ header: {
+ token: uni.getStorageSync("token") || "",
+ },
+ success: (res) => {
+ const data = JSON.parse(res.data);
+ if (data.code === 1) {
+ resolve(data.data.url);
+ } else {
+ reject(new Error(data.msg));
+ }
+ },
+ fail: reject
+ });
+ });
+ },
+
+ callCloneAPI() {
+ return new Promise((resolve, reject) => {
+ uni.request({
+ url: this.baseURLPy + '/config/voices/clone',
+ method: 'POST',
+ header: {
+ 'Content-Type': 'application/json',
+ 'token': uni.getStorageSync("token") || "",
+ },
+ data: {
+ audio_url: this.audioUrl,
+ voice_name: this.cloneVoiceName,
+ gender: this.form.gender || 'female'
+ },
+ success: (res) => {
+ if (res.data.code === 1) {
+ resolve(res.data.data);
+ } else {
+ reject(new Error(res.data.message));
+ }
+ },
+ fail: reject
+ });
+ });
+ },
+
+ async pollCloneStatus() {
+ const maxAttempts = 30; // 最多轮询30次
+ const interval = 10000; // 每10秒轮询一次
+
+ for (let i = 0; i < maxAttempts; i++) {
+ await new Promise(resolve => setTimeout(resolve, interval));
+
+ try {
+ const status = await this.checkCloneStatus();
+
+ if (status === 'OK') {
+ // 克隆成功,保存到数据库
+ await this.saveClonedVoice();
+ this.cloneStatus = 'success';
+ this.cloning = false;
+
+ uni.showToast({
+ title: '克隆成功!',
+ icon: 'success'
+ });
+
+ // 刷新音色列表
+ setTimeout(() => {
+ this.cloneModalVisible = false;
+ this.configVoices();
+ }, 2000);
+
+ return;
+ } else if (status === 'FAILED') {
+ throw new Error('克隆失败');
+ }
+ // 继续轮询
+ } catch (error) {
+ console.error('查询状态失败:', error);
+ this.cloneStatus = 'failed';
+ this.cloning = false;
+ return;
+ }
+ }
+
+ // 超时
+ this.cloneStatus = 'timeout';
+ this.cloning = false;
+ },
+
+ checkCloneStatus() {
+ return new Promise((resolve, reject) => {
+ uni.request({
+ url: this.baseURLPy + `/config/voices/clone/${this.cloneVoiceId}/status`,
+ method: 'GET',
+ header: {
+ 'token': uni.getStorageSync("token") || "",
+ },
+ success: (res) => {
+ if (res.data.code === 1) {
+ resolve(res.data.data.status);
+ } else {
+ reject(new Error(res.data.message));
+ }
+ },
+ fail: reject
+ });
+ });
+ },
+
+ saveClonedVoice() {
+ return new Promise((resolve, reject) => {
+ uni.request({
+ url: this.baseURLPy + `/config/voices/clone/${this.cloneVoiceId}/save`,
+ method: 'POST',
+ header: {
+ 'token': uni.getStorageSync("token") || "",
+ },
+ success: (res) => {
+ if (res.data.code === 1) {
+ resolve(res.data.data);
+ } else {
+ reject(new Error(res.data.message));
+ }
+ },
+ fail: reject
+ });
+ });
+ }
+ },
+
+ computed: {
+ cloneStatusText() {
+ const statusMap = {
+ 'uploading': '正在上传音频...',
+ 'cloning': '正在克隆音色...',
+ 'polling': '正在生成音色,请稍候...',
+ 'success': '✅ 克隆成功!',
+ 'failed': '❌ 克隆失败',
+ 'timeout': '⏱️ 克隆超时,请稍后重试'
+ };
+ return statusMap[this.cloneStatus] || '';
+ },
+
+ cloneStatusClass() {
+ return {
+ 'status-processing': ['uploading', 'cloning', 'polling'].includes(this.cloneStatus),
+ 'status-success': this.cloneStatus === 'success',
+ 'status-error': ['failed', 'timeout'].includes(this.cloneStatus)
+ };
}
}
}
@@ -353,4 +645,145 @@ page {
background: linear-gradient(135deg, #9F47FF 0%, #0053FA 100%);
border-radius: 12rpx;
}
+
+/* 克隆音色按钮 */
+.clone-voice-btn {
+ margin: 0 0 30rpx 0;
+ padding: 24rpx 40rpx;
+ background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
+ border-radius: 12rpx;
+ text-align: center;
+ color: #FFFFFF;
+ font-size: 32rpx;
+ font-weight: 500;
+}
+
+/* 克隆音色弹窗 */
+.clone-modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: rgba(0, 0, 0, 0.6);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 9999;
+}
+
+.clone-content {
+ width: 85%;
+ max-width: 600rpx;
+ background: #FFFFFF;
+ border-radius: 20rpx;
+ padding: 40rpx;
+}
+
+.clone-title {
+ font-size: 36rpx;
+ font-weight: bold;
+ color: #333;
+ text-align: center;
+ margin-bottom: 20rpx;
+}
+
+.clone-desc {
+ font-size: 26rpx;
+ color: #999;
+ text-align: center;
+ margin-bottom: 30rpx;
+ line-height: 1.5;
+}
+
+.clone-input {
+ width: 100%;
+ padding: 20rpx;
+ border: 2rpx solid #E0E0E0;
+ border-radius: 10rpx;
+ font-size: 28rpx;
+ margin-bottom: 30rpx;
+}
+
+.clone-upload-area {
+ width: 100%;
+ min-height: 200rpx;
+ border: 2rpx dashed #9F47FF;
+ border-radius: 10rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-bottom: 30rpx;
+ background: #F9F9F9;
+}
+
+.upload-placeholder {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ color: #666;
+}
+
+.upload-placeholder text:first-child {
+ font-size: 32rpx;
+ margin-bottom: 10rpx;
+}
+
+.upload-tip {
+ font-size: 24rpx;
+ color: #999;
+}
+
+.upload-success {
+ color: #4CAF50;
+ font-size: 28rpx;
+ padding: 20rpx;
+ text-align: center;
+}
+
+.clone-status {
+ text-align: center;
+ margin-bottom: 30rpx;
+ font-size: 28rpx;
+}
+
+.status-processing {
+ color: #2196F3;
+}
+
+.status-success {
+ color: #4CAF50;
+}
+
+.status-error {
+ color: #F44336;
+}
+
+.clone-buttons {
+ display: flex;
+ justify-content: space-between;
+ gap: 20rpx;
+}
+
+.clone-btn {
+ flex: 1;
+ padding: 20rpx;
+ text-align: center;
+ border-radius: 10rpx;
+ font-size: 28rpx;
+}
+
+.clone-btn.cancel {
+ background: #f5f5f5;
+ color: #666;
+}
+
+.clone-btn.confirm {
+ background: linear-gradient(135deg, #9F47FF 0%, #0053FA 100%);
+ color: #fff;
+}
+
+.clone-btn.disabled {
+ opacity: 0.6;
+}
\ No newline at end of file
diff --git a/xuniYou/pages/mine/invite.vue b/xuniYou/pages/mine/invite.vue
index 1e8f4ff..c210c1a 100644
--- a/xuniYou/pages/mine/invite.vue
+++ b/xuniYou/pages/mine/invite.vue
@@ -74,7 +74,31 @@
title: '图片加载中...'
});
- // 同时下载两个图片
+ // #ifdef H5
+ // H5 环境直接使用图片 URL,不下载
+ const topImageUrl = 'https://nvlovers.oss-cn-qingdao.aliyuncs.com/uploads/20251226/cb61a8209c59166e5a56e9c5c470e8f1.png';
+ const qrCodeUrl = 'https://nvlovers.oss-cn-qingdao.aliyuncs.com/uploads/20251226/54a0da02080e49dbf2d6412791c58281.png';
+
+ this.topImageLocalPath = topImageUrl;
+ this.qrCodeLocalPath = qrCodeUrl;
+
+ // 获取顶部图片信息
+ uni.getImageInfo({
+ src: topImageUrl,
+ success: (res) => {
+ this.topImageRatio = res.width / res.height;
+ resolve();
+ },
+ fail: (err) => {
+ console.error('获取图片信息失败:', err);
+ this.topImageRatio = 3;
+ resolve();
+ }
+ });
+ // #endif
+
+ // #ifndef H5
+ // 非 H5 环境下载图片
Promise.all([
this.downloadImage('https://nvlovers.oss-cn-qingdao.aliyuncs.com/uploads/20251226/cb61a8209c59166e5a56e9c5c470e8f1.png'),
this.downloadImage('https://nvlovers.oss-cn-qingdao.aliyuncs.com/uploads/20251226/54a0da02080e49dbf2d6412791c58281.png')
@@ -86,14 +110,12 @@
uni.getImageInfo({
src: topImagePath,
success: (res) => {
- // 计算图片的宽高比
this.topImageRatio = res.width / res.height;
resolve();
},
fail: (err) => {
console.error('获取图片信息失败:', err);
- // 如果获取失败,使用默认比例
- this.topImageRatio = 3; // 默认宽高比 3:1
+ this.topImageRatio = 3;
resolve();
}
});
@@ -101,6 +123,7 @@
console.error('下载图片失败:', err);
reject(err);
});
+ // #endif
});
},
diff --git a/xunifriend_RaeeC/runtime/log/202602/01.log b/xunifriend_RaeeC/runtime/log/202602/01.log
index 7184154..9ee725d 100644
--- a/xunifriend_RaeeC/runtime/log/202602/01.log
+++ b/xunifriend_RaeeC/runtime/log/202602/01.log
@@ -17234,3 +17234,6471 @@ T File
[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000544s ]
[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001700s ]
[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000734s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:05+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.102184s] [吞吐率:9.79req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003428s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003459s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001081s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001533s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000433s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000377s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000793s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001740s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000044s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.018870s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001494s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000408s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001772s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000600s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000444s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001472s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000470s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001462s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000399s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001286s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000570s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001959s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000628s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:05+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.116873s] [吞吐率:8.56req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004076s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004109s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001178s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001723s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000499s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000426s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000779s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001739s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000045s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.019783s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002160s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000450s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002062s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000692s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000497s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001673s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000466s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001340s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000400s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001218s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000448s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001458s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000563s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:12+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090252s] [吞吐率:11.08req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003771s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003800s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001200s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001532s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000437s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000382s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000819s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001801s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000045s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001203s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001595s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001982s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000606s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000689s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002073s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000614s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001531s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000555s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001469s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000617s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001707s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000619s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:12+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.120014s] [吞吐率:8.33req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004725s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004801s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001710s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002291s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000632s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000587s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000955s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002778s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.019003s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001607s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000462s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002352s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000623s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000514s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001536s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000433s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001399s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000476s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001395s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001503s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000540s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.111103s] [吞吐率:9.00req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004187s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004241s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001158s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002000s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000505s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000447s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000885s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002435s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000069s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.003507s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002431s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000668s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003589s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000999s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000696s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002239s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000608s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002052s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000511s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002073s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000646s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002210s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000669s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:56:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.108954s] [吞吐率:9.18req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004369s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004423s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001209s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002037s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000617s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000490s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001042s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002671s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000069s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.003262s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002119s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000532s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.004082s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000751s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000605s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002130s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000581s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002596s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000589s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002190s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000653s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002220s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000700s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:57:30+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.114127s] [吞吐率:8.76req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004492s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004546s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001195s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000059s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002208s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000502s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000453s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000889s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002424s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000077s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001571s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002287s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000611s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003473s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000841s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.001096s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002797s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000635s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002134s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000523s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001939s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000682s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002158s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000716s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:57:31+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.106521s] [吞吐率:9.39req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004358s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004412s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001108s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002149s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000549s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000464s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000837s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002176s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000066s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.002745s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002092s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000539s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003207s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000808s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000707s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002408s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000574s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002201s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000592s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002092s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000636s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002571s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000835s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:58:51+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.059033s] [吞吐率:16.94req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003837s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003874s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001259s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001761s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000515s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000454s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:58:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.120607s] [吞吐率:8.29req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003997s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004029s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001308s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001808s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000527s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000467s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000896s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001962s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.025764s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001785s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000523s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002033s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000657s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000497s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001667s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000497s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001529s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000473s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001471s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000590s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001553s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000576s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:58:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.135060s] [吞吐率:7.40req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003885s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003926s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001246s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001843s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000524s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000448s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000873s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001954s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.024620s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001801s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000530s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002042s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000715s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000736s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001800s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000528s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001783s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000446s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001828s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000621s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001525s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000556s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:58:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.115723s] [吞吐率:8.64req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004057s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004091s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001346s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001801s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000520s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000457s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000816s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001791s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014380s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001545s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000484s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002125s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000638s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000500s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001542s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000474s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001470s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000440s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001348s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000500s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001433s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000555s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.051248s] [吞吐率:19.51req/s] [内存消耗:2,614.20kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004134s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004175s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000963s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'getToken',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001622s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000440s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000382s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/friend/index
+[运行时间:0.050282s] [吞吐率:19.89req/s] [内存消耗:2,603.63kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003289s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003324s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000930s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'friend',
+ 2 => 'index',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002444s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000693s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000587s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/msg/count
+[运行时间:0.050551s] [吞吐率:19.78req/s] [内存消耗:2,597.56kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003341s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003382s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000948s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'msg',
+ 2 => 'count',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001537s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000416s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000345s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/msg/count
+[运行时间:0.075035s] [吞吐率:13.33req/s] [内存消耗:4,213.69kb] [文件加载:91]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003287s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003319s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000903s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'msg',
+ 2 => 'count',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001539s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000424s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000385s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000706s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001848s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000058s ]
+[ info ] [ RUN ] app\api\controller\Msg->count[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Msg.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001239s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001676s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000476s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002036s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000808s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_notifications` [ RunTime:0.001701s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_notifications` WHERE `to_user_id` = 70 AND `is_read` = '0' LIMIT 1 [ RunTime:0.000607s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_requests` [ RunTime:0.001487s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_requests` WHERE `to_user_id` = 70 AND `status` = '0' LIMIT 1 [ RunTime:0.000545s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/friend/index
+[运行时间:0.103738s] [吞吐率:9.64req/s] [内存消耗:4,404.50kb] [文件加载:97]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003314s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003351s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000964s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'friend',
+ 2 => 'index',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '10',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'page' => 1,
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001525s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000477s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000406s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000773s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001849s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\Friend->index[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Friend.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.021615s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001538s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000475s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002074s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000705s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_relations` [ RunTime:0.001504s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 1 [ RunTime:0.000528s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 0,15 [ RunTime:0.000516s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000704s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001603s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 36 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000634s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 40 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000560s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 41 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000605s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.044798s] [吞吐率:22.32req/s] [内存消耗:2,614.16kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003093s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003123s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000877s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'online',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001461s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000406s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000342s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.528445s] [吞吐率:1.89req/s] [内存消耗:4,271.58kb] [文件加载:94]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003462s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003503s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000981s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'getToken',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '2',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001565s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000501s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000385s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000923s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002108s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\Huanxin->getToken[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Huanxin.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.020011s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001422s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002122s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000888s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000561s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_huanxin` [ RunTime:0.001511s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_huanxin` WHERE `user_id` = 70 LIMIT 1 [ RunTime:0.000595s ]
+[ sql ] [ SQL ] UPDATE `nf_user_huanxin` SET `hx_access_token`='YWMtYQ6G0v8iEfCRhxOv45KXTC3jSxJrL0ZmiISwq9ulUDNnn58g7TER8I-f1Yzx2rgEAwMAAAGcF1reVwBPGgCMdpZST60DRxD0MBiwC4e6KizmY2AQDjr_g6z6EJ3fTA',`hx_expires_in`='5184000',`updatetime`=1769918343 WHERE `user_id` = 70 [ RunTime:0.004046s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:03+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.479197s] [吞吐率:2.09req/s] [内存消耗:4,329.22kb] [文件加载:95]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003095s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003125s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000889s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'online',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '23',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'user_ids' => '36,40,41',
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001455s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000417s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000356s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000752s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001753s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\Huanxin->online[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Huanxin.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.020316s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001951s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000748s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002252s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000736s ]
+[ sql ] [ SQL ] SELECT `id`,`user_number` FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000562s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:04+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.039997s] [吞吐率:25.00req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002789s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002815s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000793s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001357s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000369s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000318s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:04+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.055191s] [吞吐率:18.12req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.005956s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.006019s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001626s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001875s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000497s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000414s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.069232s] [吞吐率:14.44req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003041s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003073s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000874s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001473s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000399s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000349s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000664s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001617s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001122s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001667s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002084s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000706s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001422s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000683s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000512s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:05+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.075685s] [吞吐率:13.21req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003132s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003165s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000925s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001457s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000401s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000347s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000650s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001672s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001078s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001364s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000440s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002090s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000653s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000588s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001550s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001404s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000413s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001321s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000550s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001508s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000573s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:06+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.049002s] [吞吐率:20.41req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003320s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003358s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000956s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001642s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000456s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000371s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:06+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.079475s] [吞吐率:12.58req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003363s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003401s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000951s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001519s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000438s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000359s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000694s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001713s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001185s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001703s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002048s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000739s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000469s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001554s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001635s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000528s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001558s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000670s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001537s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000568s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:06+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.094873s] [吞吐率:10.54req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003246s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003280s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000916s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001493s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000420s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000354s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000695s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001835s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011737s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002538s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000716s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002204s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000638s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000674s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002583s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000688s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001542s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000461s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001385s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000554s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001739s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000579s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:06+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.088756s] [吞吐率:11.27req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003167s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003198s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000887s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001507s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000426s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000355s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000684s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001673s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.010548s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001509s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000536s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002020s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001016s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000717s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002676s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000686s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002585s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000498s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001370s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000521s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001461s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000563s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:38+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.047816s] [吞吐率:20.91req/s] [内存消耗:2,614.20kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003616s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003653s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000959s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'getToken',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001710s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000613s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000381s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:38+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/friend/index
+[运行时间:0.046557s] [吞吐率:21.48req/s] [内存消耗:2,603.63kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003302s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003338s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000881s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'friend',
+ 2 => 'index',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001651s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000434s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000366s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:38+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/msg/count
+[运行时间:0.046155s] [吞吐率:21.67req/s] [内存消耗:2,597.56kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003945s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003983s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000902s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'msg',
+ 2 => 'count',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001539s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000407s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000328s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:38+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/friend/index
+[运行时间:0.083378s] [吞吐率:11.99req/s] [内存消耗:4,404.50kb] [文件加载:97]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002977s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003007s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000812s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'friend',
+ 2 => 'index',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '10',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'page' => 1,
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001420s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000387s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000320s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000573s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001413s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000041s ]
+[ info ] [ RUN ] app\api\controller\Friend->index[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Friend.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013149s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001308s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000412s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001909s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000613s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_relations` [ RunTime:0.001455s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 1 [ RunTime:0.000542s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 0,15 [ RunTime:0.000506s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000592s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001440s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 36 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000553s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 40 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000504s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 41 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000496s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:39+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/msg/count
+[运行时间:0.083992s] [吞吐率:11.91req/s] [内存消耗:4,213.69kb] [文件加载:91]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002999s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003028s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000840s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'msg',
+ 2 => 'count',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002273s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000594s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000503s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000668s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001593s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000047s ]
+[ info ] [ RUN ] app\api\controller\Msg->count[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Msg.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014364s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001570s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000424s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001949s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000658s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_notifications` [ RunTime:0.001447s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_notifications` WHERE `to_user_id` = 70 AND `is_read` = '0' LIMIT 1 [ RunTime:0.000515s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_requests` [ RunTime:0.001429s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_requests` WHERE `to_user_id` = 70 AND `status` = '0' LIMIT 1 [ RunTime:0.000477s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:39+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.038284s] [吞吐率:26.12req/s] [内存消耗:2,614.16kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002691s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002717s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000756s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'online',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,content-type,sid,token,x-user-id',
+ 'access-control-request-method' => 'POST',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001269s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000358s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000350s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:39+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.473832s] [吞吐率:2.11req/s] [内存消耗:4,271.58kb] [文件加载:94]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002877s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002907s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000797s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'getToken',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '2',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001316s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000378s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000324s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000611s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001467s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000042s ]
+[ info ] [ RUN ] app\api\controller\Huanxin->getToken[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Huanxin.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.020225s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001636s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000444s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001942s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000619s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000462s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_huanxin` [ RunTime:0.001360s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_huanxin` WHERE `user_id` = 70 LIMIT 1 [ RunTime:0.000770s ]
+[ sql ] [ SQL ] UPDATE `nf_user_huanxin` SET `hx_access_token`='YWMtdjcQ7P8iEfC7IkfyIFlUCS3jSxJrL0ZmiISwq9ulUDNnn58g7TER8I-f1Yzx2rgEAwMAAAGcF1tpAQBPGgD-QY7A_0IYWX2jjNh5RUG6SQekEKrNCfVrzMCx0dsDiQ',`hx_expires_in`='5184000',`updatetime`=1769918379 WHERE `user_id` = 70 [ RunTime:0.003223s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:39+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.457215s] [吞吐率:2.19req/s] [内存消耗:4,329.22kb] [文件加载:95]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002697s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002723s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000794s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'huanxin',
+ 2 => 'online',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'content-type' => 'application/json',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'content-length' => '23',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'user_ids' => '36,40,41',
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001271s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000354s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000338s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000679s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001630s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\Huanxin->online[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\Huanxin.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.022026s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001686s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000719s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003622s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000974s ]
+[ sql ] [ SQL ] SELECT `id`,`user_number` FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000742s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:40+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.047032s] [吞吐率:21.26req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003364s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003395s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000935s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001506s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000439s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000376s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:40+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.046304s] [吞吐率:21.60req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003229s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003261s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000918s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001527s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000428s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000370s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:40+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.076941s] [吞吐率:13.00req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003335s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003389s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001112s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001806s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000446s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000391s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001155s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001683s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001410s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001701s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000492s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002227s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000705s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001630s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000743s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000540s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:40+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.113171s] [吞吐率:8.84req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003177s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003212s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000893s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002211s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000716s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000610s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000693s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001683s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.025573s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001693s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000549s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002223s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000698s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000485s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001603s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000511s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001515s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000491s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001539s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000559s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001548s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000575s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:44+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.047550s] [吞吐率:21.03req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003542s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003585s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001121s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001570s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000410s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000321s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.088116s] [吞吐率:11.35req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003241s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003277s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000898s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001487s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000411s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000342s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000712s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001717s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011811s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001745s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000507s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001960s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000640s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000468s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001468s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000637s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001539s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000444s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001473s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000698s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001593s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000655s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.097153s] [吞吐率:10.29req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003572s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003607s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000881s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001502s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000410s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000338s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001183s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001647s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013418s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001695s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000646s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002351s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000909s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000502s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001596s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000646s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001594s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000551s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001547s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000532s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001589s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000608s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091291s] [吞吐率:10.95req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003136s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003167s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000882s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001484s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000414s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000345s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000672s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001687s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014389s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001642s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000482s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002037s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000864s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000509s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001639s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000602s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002540s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000516s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001676s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000554s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001617s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000722s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:50+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.041826s] [吞吐率:23.91req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003067s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003111s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000944s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001294s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000355s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000295s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:50+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.084957s] [吞吐率:11.77req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003257s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003295s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001002s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001453s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000410s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000333s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000660s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001703s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000044s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.015511s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001536s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000423s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001995s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000617s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000417s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001431s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000429s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001473s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000418s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001288s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001460s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000509s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:50+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.085723s] [吞吐率:11.67req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003102s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003135s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000826s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001408s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000375s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000310s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000617s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001632s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000058s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014992s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001528s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000436s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001885s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000589s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000425s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001370s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000450s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001627s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000412s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001331s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000504s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001432s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000539s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:50+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090583s] [吞吐率:11.04req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003028s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003056s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000825s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001472s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000385s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000330s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000640s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001575s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000047s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.018928s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002568s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000499s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002287s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000643s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000465s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001454s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000463s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001432s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000440s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001421s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000608s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001405s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000584s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:53+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.037797s] [吞吐率:26.46req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002650s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002674s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000718s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001303s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000345s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000269s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090032s] [吞吐率:11.11req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003032s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003060s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000865s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001442s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000392s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000396s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000574s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001552s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000055s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.010712s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002657s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000644s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003031s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000701s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000667s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002262s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000491s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001395s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000442s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001295s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000586s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001567s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000582s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.081966s] [吞吐率:12.20req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002700s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002726s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000731s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001251s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000316s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000290s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000645s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001999s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000054s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011136s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002489s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000635s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003658s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000766s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000639s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001469s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000461s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001531s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000405s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001367s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000813s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002604s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000788s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:55+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.098449s] [吞吐率:10.16req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003140s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003171s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000881s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001449s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000403s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000340s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000702s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001693s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.016752s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002051s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000669s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002473s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000795s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001694s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000541s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001818s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001768s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000643s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002813s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000701s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:58+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.048921s] [吞吐率:20.44req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003387s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003426s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000961s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001531s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000432s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000365s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T11:59:58+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091746s] [吞吐率:10.90req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003008s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003038s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000877s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001391s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000405s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000339s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000634s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001567s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.016207s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001685s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000438s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002196s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000698s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000613s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001566s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000503s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001556s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001361s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000524s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001428s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000544s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:58+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.099322s] [吞吐率:10.07req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003201s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003233s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000931s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001475s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000418s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000353s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001212s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003037s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000091s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014323s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001680s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000511s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002189s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000853s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000737s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001705s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000547s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001584s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000437s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001465s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000538s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001538s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000601s ]
+---------------------------------------------------------------
+[ 2026-02-01T11:59:58+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.095618s] [吞吐率:10.46req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003101s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003132s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000899s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001492s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000408s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000349s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000653s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001606s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.021737s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001517s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000455s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002320s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000682s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000552s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001828s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000480s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001480s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000582s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001319s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000489s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001390s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000542s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.080107s] [吞吐率:12.48req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003142s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003173s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000877s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001456s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000400s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000339s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000674s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001676s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000049s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001210s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001768s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000592s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002288s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000744s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000470s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001562s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000655s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001622s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000463s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001519s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000611s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001713s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000574s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:24+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.110996s] [吞吐率:9.01req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003562s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003595s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000972s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001530s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000529s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000391s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000741s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001805s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000057s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.025141s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002561s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000531s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002254s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000791s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000558s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001650s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000523s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001713s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001663s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000697s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002823s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000701s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:24+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.052341s] [吞吐率:19.11req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003246s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003278s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000898s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001521s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000409s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000358s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T12:00:24+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.089283s] [吞吐率:11.20req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003118s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003149s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000890s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001478s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000409s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000343s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000678s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001654s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014066s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001695s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000620s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002238s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000668s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001469s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000707s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001673s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000455s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001419s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000527s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001577s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000563s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:24+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091240s] [吞吐率:10.96req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003098s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003128s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000886s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001464s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000403s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000321s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000701s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001692s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.015394s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002451s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000852s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002014s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000720s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000519s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001544s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000492s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001489s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000581s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001482s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000553s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001669s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000607s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:24+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091537s] [吞吐率:10.92req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003463s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003509s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000932s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001560s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000416s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000370s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000728s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001711s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013989s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001605s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000506s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002141s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000968s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000814s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001775s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000573s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001470s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000450s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001343s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001445s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000559s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:39+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.050191s] [吞吐率:19.92req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003564s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003604s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000961s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001617s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000463s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000420s ]
+[ info ] [ LOG ] INIT File
+File
+---------------------------------------------------------------
+[ 2026-02-01T12:00:39+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.083630s] [吞吐率:11.96req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003171s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003203s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000920s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001509s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000426s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000357s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000695s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001700s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014725s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001752s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000598s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002112s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000656s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001465s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000724s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000583s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:39+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.108206s] [吞吐率:9.24req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004146s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004244s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001338s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002103s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000527s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000604s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000722s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001748s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.015328s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001502s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000485s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002163s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000718s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000505s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001617s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000490s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001570s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000480s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001438s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000595s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001619s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000600s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:41+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_level_list
+[运行时间:0.050298s] [吞吐率:19.88req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003303s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003338s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000919s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_level_list',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001595s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000454s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000360s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T12:00:41+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.054417s] [吞吐率:18.38req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003321s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003357s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000943s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001530s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000460s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000446s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T12:00:41+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_level_list
+[运行时间:0.083523s] [吞吐率:11.97req/s] [内存消耗:4,232.07kb] [文件加载:89]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003354s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003393s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000960s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_level_list',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001599s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000512s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000466s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000786s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001778s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_level_list[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001289s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001849s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000557s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002413s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000689s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000762s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002844s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` ORDER BY `weigh` DESC [ RunTime:0.000532s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:41+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.093312s] [吞吐率:10.72req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003378s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003420s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000951s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001536s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000499s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000383s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000700s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001835s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001161s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001653s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000688s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002317s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000743s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000484s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002211s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001683s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000459s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001465s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000621s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001564s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000619s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.082442s] [吞吐率:12.13req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003427s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003461s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001009s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001769s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000517s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000447s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000706s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001788s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001051s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001765s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000508s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002185s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000663s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000553s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001555s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000479s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001497s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000448s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001403s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000582s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001499s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000621s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.101686s] [吞吐率:9.83req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003533s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003568s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000939s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001623s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000470s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000451s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000792s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002034s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.018807s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001587s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000495s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002027s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000774s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000534s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001573s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000510s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001454s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000539s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001444s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000585s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001567s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000584s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090033s] [吞吐率:11.11req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003350s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003381s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000948s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001495s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000451s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000363s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000672s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001696s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011377s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001741s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000700s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002067s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000831s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000661s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001487s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000488s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001546s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000466s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002076s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000601s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002286s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000645s ]
+---------------------------------------------------------------
+[ 2026-02-01T12:00:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.104403s] [吞吐率:9.58req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003814s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003849s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001205s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001751s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000498s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000442s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000889s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001976s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000054s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013749s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001897s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000520s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002018s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000677s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000545s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002209s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000736s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001507s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000454s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001562s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000542s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001510s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000602s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:31:12+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.129192s] [吞吐率:7.74req/s] [内存消耗:4,287.26kb] [文件加载:93]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003891s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003922s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001287s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001865s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000723s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000551s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000916s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002203s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001831s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002741s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000680s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003561s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001172s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000722s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002600s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000698s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002564s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000630s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002392s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000778s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002863s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000940s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:31:18+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.100550s] [吞吐率:9.95req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004001s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004031s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001316s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001871s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000534s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000444s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000897s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002040s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000057s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001841s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002751s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000704s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003693s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001296s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000784s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001592s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000545s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001561s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000459s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001490s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000618s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001553s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.001010s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:32:43+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.097263s] [吞吐率:10.28req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003783s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003819s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001240s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001744s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000509s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000443s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000889s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001931s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000049s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001378s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001567s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000467s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002072s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000864s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000558s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001903s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000515s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001731s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000436s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002073s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000659s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002566s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000684s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:32:49+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.067556s] [吞吐率:14.80req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004175s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004213s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001301s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002070s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000528s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000460s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:32:49+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.107454s] [吞吐率:9.31req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003960s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004001s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001191s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001518s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000429s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000361s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000667s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001658s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.017654s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001571s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000429s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001810s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000591s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000720s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001365s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000755s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001367s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000391s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001236s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000965s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001340s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000493s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:32:49+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.105721s] [吞吐率:9.46req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003203s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003240s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000851s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001528s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000405s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000355s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000642s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001510s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000045s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.017410s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001562s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000447s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002043s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000880s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000432s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001491s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000580s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001414s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000435s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001401s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000523s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001482s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000547s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:32:49+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.080426s] [吞吐率:12.43req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003398s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003433s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000955s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001500s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000416s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000346s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001216s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003040s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000089s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001283s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001490s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000430s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002073s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001214s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000611s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001534s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000455s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001438s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000424s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001291s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000485s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001375s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000516s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.108037s] [吞吐率:9.26req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003324s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003362s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000944s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001571s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000447s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000392s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000910s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002089s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.023682s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001681s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000472s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002086s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000692s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000513s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001751s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000618s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001636s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000543s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001503s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000557s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001602s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000587s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091555s] [吞吐率:10.92req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003292s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003326s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000924s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001563s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000430s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000369s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000720s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001765s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011407s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001807s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000704s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003593s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001003s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000578s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001976s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000499s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001508s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000478s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001417s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000533s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001505s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000637s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:06+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.081315s] [吞吐率:12.30req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003440s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003475s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000908s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001531s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000427s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000370s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000690s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001672s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001784s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002687s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000666s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002445s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001037s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000503s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002202s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000524s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002619s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000569s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001396s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000520s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001461s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000555s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:08+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.097511s] [吞吐率:10.26req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003338s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003370s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000941s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001504s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000436s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000369s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000696s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001741s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000051s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.010518s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002709s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000734s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003662s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001065s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000901s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002689s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000693s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002709s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000768s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002521s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.001023s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002756s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000899s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:16+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091970s] [吞吐率:10.87req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003239s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003270s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000910s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001477s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000433s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000381s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000703s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001745s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.010670s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002622s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000757s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002132s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000735s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000473s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001475s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001548s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000451s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001425s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000580s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002292s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000602s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:33:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.102846s] [吞吐率:9.72req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002884s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002920s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000784s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001696s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000871s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000472s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000868s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002012s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.017402s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001771s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000486s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002100s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000636s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000510s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001543s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000432s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001534s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000416s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001339s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000506s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001398s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000526s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:34:57+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.100372s] [吞吐率:9.96req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003561s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003594s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001093s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001638s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000484s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000403s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000793s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001784s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000044s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013484s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001560s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000453s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002025s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000594s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000417s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001430s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001374s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000384s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001257s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000472s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001367s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000593s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:07+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.071066s] [吞吐率:14.07req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004876s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004919s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001606s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001915s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000553s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000481s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:07+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.122230s] [吞吐率:8.18req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004083s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004117s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001324s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001919s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000523s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000464s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000921s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002091s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000054s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014768s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001774s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000521s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002153s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000911s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000671s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001697s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000543s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001530s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000531s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001461s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000584s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001502s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000568s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:07+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.109001s] [吞吐率:9.17req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003867s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003900s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001161s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001490s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000408s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000358s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000724s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001736s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000054s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.021209s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001460s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002084s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000693s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000707s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001605s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000538s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001577s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000487s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001509s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000578s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001535s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000604s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:07+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091905s] [吞吐率:10.88req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003148s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003179s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000891s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001493s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000415s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000348s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000768s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001779s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000055s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013503s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001484s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000507s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002139s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000710s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000730s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001681s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000575s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001645s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000512s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002338s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.001050s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001696s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000621s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:35+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.046719s] [吞吐率:21.40req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003365s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003400s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000943s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001519s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000465s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000385s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:35+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.069870s] [吞吐率:14.31req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.006744s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.006814s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001687s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000050s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.003057s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000767s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000369s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:35+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.095162s] [吞吐率:10.51req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003252s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003289s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000939s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001531s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000438s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000365s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001510s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003193s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000056s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001196s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001654s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000526s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003523s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000779s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.002138s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000795s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000543s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:35+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.093207s] [吞吐率:10.73req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003305s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003346s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001009s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001657s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000463s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000389s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000695s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001682s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000058s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.011655s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001703s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000579s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002324s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000682s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001674s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000809s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001730s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000514s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001505s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000606s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001801s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000632s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:44+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.056591s] [吞吐率:17.67req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004200s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004249s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001234s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002082s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000596s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000505s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:44+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_recharge_package
+[运行时间:0.056760s] [吞吐率:17.62req/s] [内存消耗:2,648.88kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.006544s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.006609s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001853s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_recharge_package',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002861s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000818s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000740s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_recharge_package
+[运行时间:0.087808s] [吞吐率:11.39req/s] [内存消耗:4,215.59kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003186s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003215s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000895s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_recharge_package',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001470s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000417s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000353s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000659s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001632s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000047s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_recharge_package[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013723s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002728s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000679s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003549s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000881s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_recharge_package` [ RunTime:0.003382s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_recharge_package` ORDER BY `weigh` DESC [ RunTime:0.004371s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.112079s] [吞吐率:8.92req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003138s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003167s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000887s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001453s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000415s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000342s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001246s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003038s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000095s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.023507s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002532s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000655s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003570s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001205s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000929s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002873s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000826s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001629s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000515s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001446s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000511s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001491s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000564s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:46+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.046399s] [吞吐率:21.55req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003225s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003256s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000916s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001518s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000439s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000369s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:46+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.045316s] [吞吐率:22.07req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003165s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003195s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000995s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001483s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000417s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000349s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:47+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.082319s] [吞吐率:12.15req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003177s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003207s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000929s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001483s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000416s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000358s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000725s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001703s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014721s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001724s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000525s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002211s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000695s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001585s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000767s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000531s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:47+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091956s] [吞吐率:10.87req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003131s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003162s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000910s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001502s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000418s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000350s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001228s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002475s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.013734s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001522s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000462s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002049s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000833s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000588s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001635s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000518s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001519s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001403s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000547s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001598s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000665s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:48+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091393s] [吞吐率:10.94req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002747s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002773s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000776s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001286s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000360s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000303s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000618s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001536s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014989s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001544s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000461s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001921s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000614s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000461s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001376s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000419s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002476s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000610s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002369s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000750s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001405s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000504s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:48+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.098941s] [吞吐率:10.11req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002835s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002863s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000782s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001397s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000387s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000314s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001511s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003554s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000098s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.018554s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001317s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000392s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003666s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000737s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000846s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002231s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000431s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002510s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000400s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002476s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000872s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001451s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000500s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:51+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.039652s] [吞吐率:25.22req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002804s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002834s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000779s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001295s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000359s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000306s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:51+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.040074s] [吞吐率:24.95req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002722s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002750s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000778s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001324s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000371s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000298s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.080791s] [吞吐率:12.38req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002716s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002742s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000763s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001285s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000366s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000299s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000624s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001565s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.021866s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001533s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000413s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001812s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000808s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001252s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000697s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000463s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.086969s] [吞吐率:11.50req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002913s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002944s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000800s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001297s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000379s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000328s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000608s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001507s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000043s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014211s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001252s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000421s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001841s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000934s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000435s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001668s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000446s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001315s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000396s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001286s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000534s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001478s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000552s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.080284s] [吞吐率:12.46req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002837s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002871s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000810s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001313s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000362s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000307s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000616s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001508s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000044s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.012593s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001463s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000432s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001920s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000592s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000498s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001479s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000420s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001335s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000428s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001442s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000480s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001325s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000503s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.071901s] [吞吐率:13.91req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003062s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003091s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000867s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'connection' => 'keep-alive',
+ 'accept' => '*/*',
+ 'accept-encoding' => 'gzip, deflate, zstd',
+ 'user-agent' => 'python-requests/2.32.5',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001487s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000420s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000333s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000593s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001472s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000044s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001010s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001356s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000419s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001946s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000603s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000401s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001324s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000422s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001322s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000440s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001213s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000541s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001313s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000494s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:59+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.040445s] [吞吐率:24.73req/s] [内存消耗:2,648.73kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002833s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002860s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000807s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001321s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000362s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000312s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:59+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.041962s] [吞吐率:23.83req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002819s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002846s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000792s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-site' => 'cross-site',
+ 'sec-fetch-mode' => 'cors',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'origin' => 'http://localhost:5173',
+ 'access-control-request-headers' => 'authorization,sid,token,x-user-id',
+ 'access-control-request-method' => 'GET',
+ 'accept' => '*/*',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001520s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000406s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000370s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T13:35:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.085966s] [吞吐率:11.63req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002749s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002774s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000770s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_hobbies',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001278s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000356s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000297s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000617s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001504s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000046s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_hobbies[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.023509s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001502s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000415s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003480s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000587s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001278s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000624s ]
+---------------------------------------------------------------
+[ 2026-02-01T13:35:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.088769s] [吞吐率:11.27req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002722s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002749s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000770s ]
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'get_user_basic',
+ ),
+)
+[ info ] [ HEADER ] array (
+ 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
+ 'accept-encoding' => 'gzip, deflate, br',
+ 'referer' => 'http://localhost:5173/',
+ 'sec-fetch-dest' => 'empty',
+ 'sec-fetch-mode' => 'cors',
+ 'sec-fetch-site' => 'cross-site',
+ 'origin' => 'http://localhost:5173',
+ 'accept' => '*/*',
+ 'sec-ch-ua-platform' => '"Windows"',
+ 'x-user-id' => '84',
+ 'token' => '2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
+ 'authorization' => 'Bearer 2ea3606b-6fca-4ede-9151-41b8c50a3207',
+ 'sec-ch-ua-mobile' => '?0',
+ 'sid' => '2',
+ 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Microsoft Edge";v="100"',
+ 'cache-control' => 'no-cache',
+ 'pragma' => 'no-cache',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+ 'content-length' => '',
+ 'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\public/../application/api\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001274s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000354s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000296s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000599s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001505s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000043s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->get_user_basic[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.020350s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001245s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000628s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001755s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000940s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000450s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001336s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000440s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001259s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000442s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002469s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000767s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002709s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000820s ]
diff --git a/开发/2026年2月1日.md b/开发/2026年2月1日.md
index 9165991..014585b 100644
--- a/开发/2026年2月1日.md
+++ b/开发/2026年2月1日.md
@@ -1,8 +1,9 @@
1. 将密码校验删除,因为无法生成模型,用最简单的方法来尝试这些内容。
-2. 将Hbuilder的AppId更换成自己的,原本的保留(__UNI__1F3C178)。还是无法正常编译,将下面的插件注释掉不用,Agora-RTC:音视频插件和AudioRecode:录音插件。
- [ ] 增加tab栏但是还没有加上对应的功能
3. 增加聊天背景选择功能,会员可以自定义背景
4. 增加恋人消息编辑功能,更新**数据库**,加上一些编辑消息、编辑时间相关字段。用户编辑消息之后恋人不回答,只会更新记忆和摘要的数据库,下一次回答的时候会重新引用这个更新后的记忆。
- [ ] 礼物、换装、音色样式更改,但是还未更新数据库
5. 恋人消息回复增加思考中...
-6.
\ No newline at end of file
+- [ ] 恋人消息回复和消息编辑都需要测试
+6. 将Hbuilder的AppId更换成自己的,原本的保留(__UNI__1F3C178)。还是无法正常编译,将下面的插件注释掉不用,Agora-RTC:音视频插件和AudioRecode:录音插件。
+- [ ] 克隆音色API填写然后给你测试
\ No newline at end of file