diff --git a/.env b/.env
index 71f0234..6b0c6ff 100644
--- a/.env
+++ b/.env
@@ -9,12 +9,51 @@ DATABASE_URL=mysql+pymysql://root:root@127.0.0.1:3306/lover?charset=utf8mb4
# 开发环境暂时使用本地地址,PHP后端配置好后再修改
USER_INFO_API=http://127.0.0.1:8080/api/user_basic/get_user_basic
-# ===== AI 配置 (暂时留空,测试阶段不需要) =====
-DASHSCOPE_API_KEY=
+# ===== AI 配置 =====
+# 阿里云 DashScope API 密钥
+DASHSCOPE_API_KEY=sk-2473385fd6d54a58a703ce6b92a62074
+
+# === 图像生成模型 ===
IMAGE_GEN_MODEL=wan2.6-t2i
IMAGE_GEN_SIZE=960*1280
WAN26_ASYNC=true
+# === 视觉理解模型 ===
+VISION_MODEL=qwen3-vl-flash
+
+# === 视频生成模型 ===
+# 唱歌视频使用 wan2.6-i2v-flash (支持音频同步)
+VIDEO_GEN_MODEL=wan2.6-i2v-flash
+VIDEO_GEN_RESOLUTION=720P
+VIDEO_GEN_DURATION=5
+
+# === EMO 视频生成 (人像驱动) ===
+# EMO 模型用于生成唱歌视频的人像动画
+EMO_MAX_CONCURRENCY=1
+EMO_MIN_SEGMENT_SECONDS=6
+
+# === 语音识别 (ASR) ===
+VOICE_CALL_ASR_MODEL=paraformer-realtime-v2
+VOICE_CALL_ASR_SAMPLE_RATE=16000
+
+# === 语音合成 (TTS) ===
+VOICE_CALL_TTS_MODEL=cosyvoice-v2
+VOICE_CALL_TTS_VOICE=longxiaochun_v2
+VOICE_CALL_TTS_FORMAT=mp3
+
+# === 对话模型 (LLM) ===
+LLM_MODEL=qwen-plus
+LLM_TEMPERATURE=0.8
+LLM_MAX_TOKENS=2000
+
+# === 语音通话配置 ===
+VOICE_CALL_MAX_HISTORY=20
+VOICE_CALL_IDLE_TIMEOUT=60
+VOICE_CALL_REQUIRE_PTT=true
+
+# === 唱歌视频合成配置 ===
+SING_MERGE_MAX_CONCURRENCY=2
+
# ===== OSS 配置 (暂时留空) =====
ALIYUN_OSS_ACCESS_KEY_ID=
ALIYUN_OSS_ACCESS_KEY_SECRET=
diff --git a/lover/__pycache__/main.cpython-314.pyc b/lover/__pycache__/main.cpython-314.pyc
index cb3fc3d..5abdd8d 100644
Binary files a/lover/__pycache__/main.cpython-314.pyc and b/lover/__pycache__/main.cpython-314.pyc differ
diff --git a/lover/main.py b/lover/main.py
index 73c4db6..3cc4114 100644
--- a/lover/main.py
+++ b/lover/main.py
@@ -2,6 +2,7 @@ from fastapi import FastAPI, HTTPException, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
import logging
+import dashscope
from .routers import config as config_router
from .routers import lover as lover_router
@@ -15,6 +16,10 @@ from .routers import sing as sing_router
from .task_queue import start_sing_workers
from .config import settings
+# 初始化 DashScope API Key
+if settings.DASHSCOPE_API_KEY:
+ dashscope.api_key = settings.DASHSCOPE_API_KEY
+
app = FastAPI(title="LOVER API")
app.add_middleware(
diff --git a/lover/routers/__pycache__/sing.cpython-314.pyc b/lover/routers/__pycache__/sing.cpython-314.pyc
index b27734c..801cfa3 100644
Binary files a/lover/routers/__pycache__/sing.cpython-314.pyc and b/lover/routers/__pycache__/sing.cpython-314.pyc differ
diff --git a/lover/routers/sing.py b/lover/routers/sing.py
index dcbb24e..92523f9 100644
--- a/lover/routers/sing.py
+++ b/lover/routers/sing.py
@@ -62,6 +62,8 @@ SING_WAN26_PROMPT = (
"lip-sync to the provided audio lyrics with natural mouth articulation and varied mouth shapes, "
"clear closures between syllables, smooth transitions; "
"subtle jaw motion only; gentle expressive hand gestures near chest; "
+ "natural facial expressions matching the song emotion: smile for happy songs, gentle sadness for melancholic songs, "
+ "soft eye movements and eyebrow raises to convey emotion; "
"realistic lighting, sharp details; pose consistent from start to end"
)
SING_WAN26_NEGATIVE_PROMPT = (
diff --git a/xuniYou/pages.json b/xuniYou/pages.json
index df04fb2..b2eec2a 100644
--- a/xuniYou/pages.json
+++ b/xuniYou/pages.json
@@ -97,6 +97,15 @@
"navigationStyle": "custom"
}
},
+ {
+ "path": "pages/chat/voiceCall",
+ "style": {
+ "navigationBarTitleText": "语音通话",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "navigationStyle": "custom"
+ }
+ },
{
"path": "pages/chat/loverMessage",
"style": {
diff --git a/xuniYou/pages/chat/setUp.vue b/xuniYou/pages/chat/setUp.vue
index 5f719a3..b3f15b4 100644
--- a/xuniYou/pages/chat/setUp.vue
+++ b/xuniYou/pages/chat/setUp.vue
@@ -27,6 +27,10 @@
聊天背景
+
+ 语音通话
+
+
@@ -116,6 +120,12 @@ export default {
url: '/pages/chat/background?session_id=' + this.form.session_id
})
},
+ // 语音通话
+ voiceCallClick() {
+ uni.navigateTo({
+ url: '/pages/chat/voiceCall'
+ })
+ },
}
}
diff --git a/xuniYou/pages/chat/voiceCall.vue b/xuniYou/pages/chat/voiceCall.vue
new file mode 100644
index 0000000..9dd6e16
--- /dev/null
+++ b/xuniYou/pages/chat/voiceCall.vue
@@ -0,0 +1,476 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusText }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ userText }}
+
+
+ {{ aiText }}
+
+
+
+
+
+
+
+ {{ micEnabled ? '松开结束' : '按住说话' }}
+
+
+
+
+ 挂断
+
+
+
+
+
+
+
+
diff --git a/xunifriend_RaeeC/runtime/log/202602/01.log b/xunifriend_RaeeC/runtime/log/202602/01.log
index 4efae53..8434dbf 100644
--- a/xunifriend_RaeeC/runtime/log/202602/01.log
+++ b/xunifriend_RaeeC/runtime/log/202602/01.log
@@ -24657,3 +24657,4135 @@ 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.000560s ]
[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001464s ]
[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000542s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:02:48+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.057340s] [吞吐率:17.44req/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.003728s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003761s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001391s ]
+[ 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.001577s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000474s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000415s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:02:48+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.060125s] [吞吐率:16.63req/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.003755s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003790s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001173s ]
+[ 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.001676s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000552s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000438s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:02:48+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.097020s] [吞吐率:10.31req/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.003339s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003366s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001086s ]
+[ 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.001540s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000446s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000379s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000791s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001708s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000043s ]
+[ 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.024890s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001402s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000415s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001751s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000587s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.002479s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000484s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000412s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:02:48+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.110307s] [吞吐率:9.07req/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.003543s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003573s ]
+[ 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.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.001638s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000463s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000470s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001505s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003412s ]
+[ 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.019158s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001586s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000460s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002150s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001005s ]
+[ 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.001511s ]
+[ 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.001522s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000420s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001287s ]
+[ 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.000470s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001381s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000514s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:03:32+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.041578s] [吞吐率:24.05req/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.002789s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002821s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000817s ]
+[ 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-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.001349s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000404s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000315s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:03:32+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.040099s] [吞吐率:24.94req/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.002809s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002840s ]
+[ 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.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-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.001383s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000367s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000307s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:03:32+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.081103s] [吞吐率:12.33req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002812s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002843s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000855s ]
+[ 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.001457s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000375s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000311s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000646s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001560s ]
+[ 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.017169s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001960s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000482s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002131s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000734s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001845s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000834s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000572s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:03:32+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.092571s] [吞吐率:10.80req/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.003070s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003102s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000808s ]
+[ 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.001499s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000380s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000316s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000681s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001850s ]
+[ 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.019720s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001629s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000543s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003631s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001015s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000620s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001474s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000452s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001307s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000383s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001258s ]
+[ 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.000509s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001516s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000562s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:54+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.060244s] [吞吐率:16.60req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004157s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004194s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001206s ]
+[ 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.001753s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000510s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000429s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:11:54+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_hobbies
+[运行时间:0.087130s] [吞吐率:11.48req/s] [内存消耗:4,218.09kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003647s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003695s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001706s ]
+[ 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.000043s ]
+[ 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.002494s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000709s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000633s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000859s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001897s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000054s ]
+[ 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.001083s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001417s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000488s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002343s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000636s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_hobbies` [ RunTime:0.001407s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `user_id` = 0 AND `deletetime` IS NULL ORDER BY `weigh` DESC [ RunTime:0.000531s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_hobbies` WHERE `deletetime` IS NULL AND `user_id` = 70 ORDER BY `createtime` ASC [ RunTime:0.000468s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:54+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090030s] [吞吐率:11.11req/s] [内存消耗:4,280.89kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003694s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003728s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001410s ]
+[ 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_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.001829s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000507s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000432s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001162s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001867s ]
+[ 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.001345s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001819s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000450s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002104s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000650s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000528s ]
+[ 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.000475s ]
+[ 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.000483s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001440s ]
+[ 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.000563s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001470s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000656s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.044667s] [吞吐率:22.39req/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.003047s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003077s ]
+[ 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.000024s ]
+[ 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.001493s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000423s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000356s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/friend/index
+[运行时间:0.043575s] [吞吐率:22.95req/s] [内存消耗:2,603.63kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003083s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003125s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000863s ]
+[ 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.001505s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000393s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000306s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/msg/count
+[运行时间:0.045171s] [吞吐率:22.14req/s] [内存消耗:2,597.56kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003142s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003181s ]
+[ 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.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.001478s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000403s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000336s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/friend/index
+[运行时间:0.088205s] [吞吐率:11.34req/s] [内存消耗:4,404.50kb] [文件加载:97]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ 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.000884s ]
+[ 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-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.001436s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000393s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000335s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000705s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001610s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ 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.013573s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001479s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000477s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002052s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000618s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_relations` [ RunTime:0.001473s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 1 [ RunTime:0.000497s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_friend_relations` WHERE `user_id` = 70 AND `status` = '1' LIMIT 0,15 [ RunTime:0.000491s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000685s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001493s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 36 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000591s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 40 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000519s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_third` WHERE `user_id` = 41 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000506s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/msg/count
+[运行时间:0.094574s] [吞吐率:10.57req/s] [内存消耗:4,213.69kb] [文件加载:91]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004262s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004311s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001238s ]
+[ 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 => '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.002218s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000542s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000507s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000861s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001871s ]
+[ 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.019529s ] 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.000427s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002011s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000648s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_notifications` [ RunTime:0.001644s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_notifications` WHERE `to_user_id` = 70 AND `is_read` = '0' LIMIT 1 [ RunTime:0.000575s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_friend_requests` [ RunTime:0.001402s ]
+[ sql ] [ SQL ] SELECT COUNT(*) AS tp_count FROM `nf_friend_requests` WHERE `to_user_id` = 70 AND `status` = '0' LIMIT 1 [ RunTime:0.000452s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.043985s] [吞吐率:22.74req/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.003061s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003094s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000883s ]
+[ 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 => '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.001463s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000402s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000339s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/getToken
+[运行时间:0.534155s] [吞吐率:1.87req/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.003095s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003125s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000879s ]
+[ 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 => '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.001444s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000409s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000334s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000864s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001926s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ 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.001320s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002306s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000475s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002033s ]
+[ 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.000590s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_huanxin` [ RunTime:0.001615s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_huanxin` WHERE `user_id` = 70 LIMIT 1 [ RunTime:0.000492s ]
+[ sql ] [ SQL ] UPDATE `nf_user_huanxin` SET `hx_access_token`='YWMt6d0i4P80EfCFdqXgCAgL5y3jSxJrL0ZmiISwq9ulUDNnn58g7TER8I-f1Yzx2rgEAwMAAAGcF9RV6QBPGgBW_Ir7mNgGGE0-q2mqIrZCfME0t94rkKAfJ1uUGk9o6g',`hx_expires_in`='5184000',`updatetime`=1769926317 WHERE `user_id` = 70 [ RunTime:0.003993s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:11:57+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/huanxin/online
+[运行时间:0.414362s] [吞吐率:2.41req/s] [内存消耗:4,329.22kb] [文件加载:95]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.002920s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002945s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000767s ]
+[ 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.001292s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000358s ]
+[ 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.000532s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001458s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000042s ]
+[ 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.014500s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001627s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000506s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002086s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000594s ]
+[ sql ] [ SQL ] SELECT `id`,`user_number` FROM `nf_user` WHERE `id` IN (36,40,41) [ RunTime:0.000474s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:00+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.053026s] [吞吐率:18.86req/s] [内存消耗:2,648.82kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003100s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003136s ]
+[ 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.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.001526s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000473s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000373s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:12:00+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.102529s] [吞吐率:9.75req/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.002931s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002964s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000786s ]
+[ 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.001348s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000391s ]
+[ 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.000751s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001631s ]
+[ 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.020664s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001580s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000449s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002016s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000642s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000531s ]
+[ 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.000479s ]
+[ 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.000414s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001296s ]
+[ 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.000484s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001419s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000543s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:00+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.091557s] [吞吐率: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.002770s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002800s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000774s ]
+[ 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.001340s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000364s ]
+[ 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.000599s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001458s ]
+[ 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.022525s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001478s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000426s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001873s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000571s ]
+[ 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.001351s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000427s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001390s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000408s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002081s ]
+[ 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.000484s ]
+[ 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.000514s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:03+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.100930s] [吞吐率:9.91req/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.003403s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003436s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001064s ]
+[ 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.001568s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000483s ]
+[ 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.000710s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001957s ]
+[ 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.019213s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001649s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000555s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002372s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000674s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000499s ]
+[ 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.000518s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001583s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000529s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001443s ]
+[ 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.000565s ]
+[ 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.000606s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:09+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.109778s] [吞吐率:9.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.003477s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003515s ]
+[ 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.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.001558s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000474s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000398s ]
+[ 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.002178s ]
+[ 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.020888s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002181s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000596s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002767s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000857s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000660s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002484s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000668s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002938s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000676s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002261s ]
+[ 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.000731s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001634s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000644s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:42+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.090155s] [吞吐率:11.09req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003218s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003255s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000894s ]
+[ 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.001907s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000447s ]
+[ 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.000719s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001734s ]
+[ 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.001224s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001657s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000478s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002341s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000730s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000522s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001658s ]
+[ 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.001545s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001517s ]
+[ 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.001515s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000607s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:12:42+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.111701s] [吞吐率:8.95req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003324s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003374s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000988s ]
+[ 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_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.001615s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000453s ]
+[ 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.000708s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001688s ]
+[ 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.026772s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001456s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000490s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002174s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000717s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001707s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000539s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001560s ]
+[ 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.001452s ]
+[ 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.001506s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000605s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:19+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.104591s] [吞吐率:9.56req/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.003733s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003768s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001179s ]
+[ 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 (
+ '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.001702s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000490s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000423s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000875s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001832s ]
+[ 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.014332s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001632s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000458s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002157s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000604s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000732s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001584s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000441s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001403s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000544s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002160s ]
+[ 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.001418s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000534s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:19+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.108212s] [吞吐率:9.24req/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.003593s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003632s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001155s ]
+[ 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.000035s ]
+[ 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.002177s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000613s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000535s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000894s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001965s ]
+[ 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.015363s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001632s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002133s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000635s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000479s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002608s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000701s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001569s ]
+[ 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.001383s ]
+[ 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.001436s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000602s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:23+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.112831s] [吞吐率:8.86req/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.003920s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003963s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001381s ]
+[ 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.001708s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000503s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000488s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000804s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001969s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000056s ]
+[ 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.011528s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.003052s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000709s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003704s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000967s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000798s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001707s ]
+[ 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.001714s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000488s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001698s ]
+[ 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.000619s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001698s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000660s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:25+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.076976s] [吞吐率:12.99req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004142s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004174s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001359s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.001822s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000541s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000486s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:14:25+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.101676s] [吞吐率:9.84req/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.003428s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003461s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000986s ]
+[ 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.001638s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000460s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000430s ]
+[ 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.001759s ]
+[ 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.013354s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001799s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000777s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003692s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000771s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000549s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002265s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000548s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001590s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000490s ]
+[ 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.000566s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001563s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000609s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:25+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.109555s] [吞吐率:9.13req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003303s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003336s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000927s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.001539s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000426s ]
+[ 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.000702s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001689s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000050s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.021590s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002433s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000546s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002147s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001201s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002723s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000570s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000482s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001481s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000616s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926465 , '2026-02-01') [ RunTime:0.002732s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001601s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000492s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=217,`level`=2 WHERE `id` = 70 [ RunTime:0.003114s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:39+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.125794s] [吞吐率:7.95req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003616s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003656s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001040s ]
+[ 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.000048s ]
+[ 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.003073s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000811s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000665s ]
+[ 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.001719s ]
+[ 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.024479s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002627s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000573s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003357s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001056s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000483s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001523s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000525s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002378s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000517s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001516s ]
+[ 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.000588s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001654s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000970s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.117459s] [吞吐率:8.51req/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.003503s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003540s ]
+[ 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.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.001558s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000454s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000378s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000913s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002086s ]
+[ 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.024737s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002959s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000752s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003779s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001219s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000845s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002802s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000820s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002762s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000703s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002568s ]
+[ 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.000930s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002644s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000938s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:44+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.053876s] [吞吐率:18.56req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003199s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003248s ]
+[ 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.000026s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'add_bond',
+ ),
+)
+[ 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.002889s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000766s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000644s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:14:44+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.107834s] [吞吐率:9.27req/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.003156s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003185s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000879s ]
+[ 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.001440s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000408s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000362s ]
+[ 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.001625s ]
+[ 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.024090s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002323s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000652s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003478s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001083s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000499s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002453s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000725s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002495s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000604s ]
+[ 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.000497s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001420s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000528s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:44+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.103473s] [吞吐率:9.66req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003036s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003065s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000850s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.001463s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000398s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000331s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000669s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001607s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000048s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.019380s ] 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.000737s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003419s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000979s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002464s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000729s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000666s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000708s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002546s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000784s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926484 , '2026-02-01') [ RunTime:0.002947s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002570s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000749s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=218,`level`=2 WHERE `id` = 70 [ RunTime:0.002852s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:46+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.054509s] [吞吐率:18.35req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003469s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003501s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000990s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.001538s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000461s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000388s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:14:46+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.111159s] [吞吐率:9.00req/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.004241s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004288s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001416s ]
+[ 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.000042s ]
+[ 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.002269s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000620s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000515s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000748s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001838s ]
+[ 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.018011s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002822s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000682s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003571s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001142s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000647s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001579s ]
+[ 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.001556s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000743s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002577s ]
+[ 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.000661s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001596s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000627s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:46+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.093689s] [吞吐率:10.67req/s] [内存消耗:4,232.96kb] [文件加载:88]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003349s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003380s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000937s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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' => '20',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => '',
+ 'num' => '',
+)
+[ 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.001731s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000488s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000417s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000719s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001802s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.017624s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001514s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000470s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002434s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000732s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:51+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.088683s] [吞吐率:11.28req/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.003153s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003187s ]
+[ 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.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.001367s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000402s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000351s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000644s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001586s ]
+[ 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.011927s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001672s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000466s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001984s ]
+[ 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.000505s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002368s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000605s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002149s ]
+[ 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.001382s ]
+[ 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.001454s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000929s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:53+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.059324s] [吞吐率:16.86req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.004035s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004078s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001309s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.002327s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000638s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000541s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:14:53+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.105921s] [吞吐率:9.44req/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.003317s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003352s ]
+[ 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.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.001541s ]
+[ 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.000702s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001764s ]
+[ 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.024232s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001696s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000682s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002055s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000683s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000490s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001473s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000476s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001495s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000453s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001357s ]
+[ 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.001548s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000613s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:14:53+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.097218s] [吞吐率:10.29req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003118s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003148s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000905s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.001524s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000434s ]
+[ 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.000741s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001762s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000053s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014702s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002298s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000509s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002057s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000716s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001704s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000497s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000695s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001507s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000597s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926493 , '2026-02-01') [ RunTime:0.003581s ]
+[ 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.000486s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=219,`level`=2 WHERE `id` = 70 [ RunTime:0.002788s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:10+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.092235s] [吞吐率:10.84req/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.003198s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003229s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000913s ]
+[ 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.001485s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000430s ]
+[ 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.000699s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001526s ]
+[ 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.011184s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002767s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000743s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003509s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001184s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000753s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001634s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000609s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002028s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000503s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001725s ]
+[ 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.001915s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000759s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:10+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.002824s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002852s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000809s ]
+[ 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.001378s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000427s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000327s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000581s ]
+[ 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.020412s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001660s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000523s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.001991s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000631s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000783s ]
+[ 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.000449s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001406s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000388s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001313s ]
+[ 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.000706s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001580s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000676s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:12+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.113675s] [吞吐率:8.80req/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.003513s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003546s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000989s ]
+[ 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.001562s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000493s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000407s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000743s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001833s ]
+[ 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.025737s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002765s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000703s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003427s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001217s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000711s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001921s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000626s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001952s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000608s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001839s ]
+[ 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.000747s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001899s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000788s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:14+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.058990s] [吞吐率:16.95req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003556s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003590s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001030s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.001609s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000485s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000414s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:15:14+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.093419s] [吞吐率:10.70req/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.003295s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003338s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000968s ]
+[ 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.001561s ]
+[ 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.000697s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001733s ]
+[ 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.012668s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002765s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000757s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002063s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000711s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000687s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001859s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000571s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001695s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000495s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001593s ]
+[ 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.000892s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002702s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000877s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:14+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.108131s] [吞吐率:9.25req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003663s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003698s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001048s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.001442s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000408s ]
+[ 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.000711s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001759s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.014131s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001581s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000672s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002349s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000719s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002750s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000747s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000669s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000545s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001606s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000786s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926514 , '2026-02-01') [ RunTime:0.002742s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001546s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000519s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=220,`level`=2 WHERE `id` = 70 [ RunTime:0.002626s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:26+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.109191s] [吞吐率:9.16req/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.003341s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003374s ]
+[ 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.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.001632s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000456s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000395s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000688s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001761s ]
+[ 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.023238s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002714s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000691s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003565s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001053s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000650s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002544s ]
+[ 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.002498s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000575s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002026s ]
+[ 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.000830s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001857s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000667s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:31+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.060035s] [吞吐率:16.66req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000029s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003564s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003601s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001037s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.001603s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000472s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000409s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:15:31+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.107804s] [吞吐率:9.28req/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.003374s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003407s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001065s ]
+[ 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.001555s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000452s ]
+[ 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.000743s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002018s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000056s ]
+[ 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.021120s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001876s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000745s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003586s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001051s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000715s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002511s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000849s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001706s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000574s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001450s ]
+[ 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.000812s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001599s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000730s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:31+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.112289s] [吞吐率:8.91req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003257s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003291s ]
+[ 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.000031s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.001539s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000429s ]
+[ 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.000727s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001733s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000052s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.017584s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001546s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000518s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002351s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000726s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001753s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000618s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000576s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000668s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001786s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000711s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926531 , '2026-02-01') [ RunTime:0.002998s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002576s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000710s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=221,`level`=2 WHERE `id` = 70 [ RunTime:0.002626s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:50+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.083837s] [吞吐率:11.93req/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.003388s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003421s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000973s ]
+[ 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.001532s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000454s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000405s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000709s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001750s ]
+[ 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.001644s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001696s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000499s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002174s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001103s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000563s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001557s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000509s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001545s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000470s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002074s ]
+[ 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.000680s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002795s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000723s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:50+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.109718s] [吞吐率:9.11req/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.003278s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003311s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000921s ]
+[ 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.001468s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000427s ]
+[ 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.000688s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001980s ]
+[ 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.023670s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002790s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000675s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003535s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001040s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000764s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002607s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000702s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002624s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000734s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002518s ]
+[ 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.001057s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.002703s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000941s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:57+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.112301s] [吞吐率:8.90req/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.003412s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003444s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000975s ]
+[ 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.001527s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000451s ]
+[ 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.001250s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003124s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000094s ]
+[ 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.025040s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001816s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000535s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002366s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000871s ]
+[ 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.002295s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000626s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001655s ]
+[ 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.002224s ]
+[ 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.001009s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001839s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000844s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:59+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.065901s] [吞吐率:15.17req/s] [内存消耗:2,648.78kb] [文件加载:71]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003575s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003608s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001039s ]
+[ 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 => 'add_bond',
+ ),
+)
+[ 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.001601s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000503s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000421s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:15:59+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.108104s] [吞吐率:9.25req/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.003316s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003349s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000954s ]
+[ 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.001509s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000439s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000375s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001206s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003118s ]
+[ 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.019629s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001982s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000488s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002046s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001007s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000590s ]
+[ 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.000480s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001467s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000453s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001785s ]
+[ 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.000552s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001504s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000673s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:15:59+08:00 ] 127.0.0.1 POST 127.0.0.1:8080/api/user_basic/add_bond
+[运行时间:0.101233s] [吞吐率:9.88req/s] [内存消耗:4,247.27kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.006970s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.007028s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001655s ]
+[ 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.000044s ]
+[ info ] [ ROUTE ] array (
+ 'type' => 'module',
+ 'module' =>
+ array (
+ 0 => 'api',
+ 1 => 'user_basic',
+ 2 => 'add_bond',
+ ),
+)
+[ 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' => '18',
+ 'connection' => 'keep-alive',
+ 'host' => '127.0.0.1:8080',
+)
+[ info ] [ PARAM ] array (
+ 'type' => 1,
+ 'num' => 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.002876s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000778s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000665s ]
+[ 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.001788s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000058s ]
+[ info ] [ RUN ] app\api\controller\UserBasic->add_bond[ C:\Users\Administrator\Desktop\Project\AI_GirlFriend\xunifriend_RaeeC\application\api\controller\UserBasic.php ]
+[ info ] [ LOG ] INIT File
+[ sql ] [ DB ] CONNECT:[ UseTime:0.001144s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001610s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000484s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002154s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000738s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001707s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000544s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000495s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_bond_config` WHERE `type` = '1' LIMIT 1 [ RunTime:0.000494s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001707s ]
+[ sql ] [ SQL ] SELECT SUM(intimacy) AS tp_sum FROM `nf_user_bond_log` WHERE `user_id` = 70 AND `type` = '1' AND `createdate` = '2026-02-01' LIMIT 1 [ RunTime:0.000602s ]
+[ sql ] [ SQL ] INSERT INTO `nf_user_bond_log` (`user_id` , `type` , `intimacy` , `createtime` , `createdate`) VALUES (70 , '1' , 1 , 1769926559 , '2026-02-01') [ RunTime:0.002739s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001685s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000550s ]
+[ sql ] [ SQL ] UPDATE `nf_user` SET `intimacy`=222,`level`=2 WHERE `id` = 70 [ RunTime:0.002800s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:03+08:00 ] 127.0.0.1 OPTIONS 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.047988s] [吞吐率:20.84req/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.003306s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003343s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000962s ]
+[ 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.001563s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000446s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000441s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2026-02-01T14:16:03+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.097746s] [吞吐率:10.23req/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.003226s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003263s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000860s ]
+[ 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.001369s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000394s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000376s ]
+[ 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.001786s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000060s ]
+[ 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.022389s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001602s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000467s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002037s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000642s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000462s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001528s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000445s ]
+[ 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.000402s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001377s ]
+[ 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.000498s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001389s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000557s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:03+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.099575s] [吞吐率:10.04req/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.003383s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003421s ]
+[ 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 => '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.000434s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000366s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000669s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001709s ]
+[ 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.022400s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001618s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000464s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002014s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000644s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000483s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001600s ]
+[ 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.001410s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000401s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001299s ]
+[ 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.000517s ]
+[ 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.000566s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:03+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.094509s] [吞吐率:10.58req/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.002944s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002974s ]
+[ 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.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.001326s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000382s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000327s ]
+[ 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.001690s ]
+[ 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.017653s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002468s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000426s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002033s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000680s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000441s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002678s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000630s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001478s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000489s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001511s ]
+[ 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.000649s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001542s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000529s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.084086s] [吞吐率:11.89req/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.003016s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003048s ]
+[ 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.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.001316s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000369s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000319s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000676s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001656s ]
+[ 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.014548s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001713s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000466s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002017s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000645s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000471s ]
+[ 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.000445s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001456s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000489s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001386s ]
+[ 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.000531s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001465s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000537s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:04+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.094172s] [吞吐率:10.62req/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.002859s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002886s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000799s ]
+[ 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.001318s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000368s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000315s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000669s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001635s ]
+[ 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.017272s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001472s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000800s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003732s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000951s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000773s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001889s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000724s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.002462s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000600s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002405s ]
+[ 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.000810s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001623s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000819s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:18+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.088806s] [吞吐率:11.26req/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.002811s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.002838s ]
+[ 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.000020s ]
+[ 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.001219s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000383s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000293s ]
+[ 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.001674s ]
+[ 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.017099s ] 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.000728s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002279s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000645s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000455s ]
+[ 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.000707s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001363s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000389s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001274s ]
+[ 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.001523s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000552s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:19+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.106846s] [吞吐率:9.36req/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.003244s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003279s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000911s ]
+[ 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.001532s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000434s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000384s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000723s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001745s ]
+[ 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.025873s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001728s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000501s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002141s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000664s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000562s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001682s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000568s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001582s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000458s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001517s ]
+[ 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.000593s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001550s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000632s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:25+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.110578s] [吞吐率:9.04req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003985s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.004020s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001294s ]
+[ 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.001819s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000517s ]
+[ 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.001157s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002086s ]
+[ 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.015681s ] 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.000492s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.002025s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000672s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000520s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001502s ]
+[ 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.001546s ]
+[ 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.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.000571s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001526s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000572s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:31+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.118000s] [吞吐率:8.47req/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.003902s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003935s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001296s ]
+[ 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.001811s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000521s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000455s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001230s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.003114s ]
+[ 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.014216s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002748s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000671s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003585s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001077s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000783s ]
+[ 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.000701s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001966s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000748s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001722s ]
+[ 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.000868s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001722s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000758s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:38+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.106784s] [吞吐率:9.36req/s] [内存消耗:4,272.90kb] [文件加载:92]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @app_init [ RunTime:0.003625s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003650s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.001237s ]
+[ 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.001585s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000472s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000414s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000884s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.001963s ]
+[ 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.015060s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002660s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000669s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003683s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000967s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000610s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001688s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000454s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001428s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000605s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001462s ]
+[ 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.001449s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000538s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:43+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.105337s] [吞吐率:9.49req/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.003303s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003335s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000980s ]
+[ 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.001526s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000430s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000368s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.000683s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002011s ]
+[ 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.011332s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.002685s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000649s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003493s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.000843s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000646s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.002635s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_level` WHERE `level` = '3' LIMIT 1 [ RunTime:0.000817s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_config` [ RunTime:0.001717s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000525s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.001926s ]
+[ 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.000728s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001672s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000993s ]
+---------------------------------------------------------------
+[ 2026-02-01T14:16:43+08:00 ] 127.0.0.1 GET 127.0.0.1:8080/api/user_basic/get_user_basic
+[运行时间:0.105465s] [吞吐率:9.48req/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.003271s ]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.003303s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000938s ]
+[ 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.001627s ]
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @module_init [ RunTime:0.000442s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @module_init [ RunTime:0.000375s ]
+[ info ] [ TOKEN ] INIT Mysql
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run \addons\alioss\Alioss @upload_config_init [ RunTime:0.001286s ]
+[ info ] [ BEHAVIOR ] Run \addons\epay\Epay @action_begin [ RunTime:0.002981s ]
+[ info ] [ BEHAVIOR ] Run \addons\third\Third @action_begin [ RunTime:0.000071s ]
+[ 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.017491s ] mysql:host=127.0.0.1;port=3306;dbname=fastadmin;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_token` [ RunTime:0.001732s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000540s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user` [ RunTime:0.003655s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user` WHERE `id` = 70 LIMIT 1 [ RunTime:0.001197s ]
+[ sql ] [ SQL ] SELECT * FROM `nf_user_token` WHERE `token` = 'add92c4de35c0dd27585fa5979c6db3b7834766e' LIMIT 1 [ RunTime:0.000606s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_level` [ RunTime:0.001640s ]
+[ 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.002775s ]
+[ sql ] [ SQL ] SELECT SUM(upper) AS tp_sum FROM `nf_user_bond_config` LIMIT 1 [ RunTime:0.000773s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_user_bond_log` [ RunTime:0.002483s ]
+[ 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.000902s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `nf_third` [ RunTime:0.001539s ]
+[ sql ] [ SQL ] SELECT `openid` FROM `nf_third` WHERE `user_id` = 70 AND `platform` = 'wxapp' LIMIT 1 [ RunTime:0.000673s ]
diff --git a/开发/2026年2月1日.md b/开发/2026年2月1日.md
index 5f5bd68..0818a7d 100644
--- a/开发/2026年2月1日.md
+++ b/开发/2026年2月1日.md
@@ -7,4 +7,4 @@
- [ ] 恋人消息回复和消息编辑都需要测试
6. 将Hbuilder的AppId更换成自己的,原本的保留(__UNI__1F3C178)。还是无法正常编译,将下面的插件注释掉不用,Agora-RTC:音视频插件和AudioRecode:录音插件。
- [ ] 克隆音色API填写然后给你测试
-7. 二维码推广功能:
\ No newline at end of file
+7. 二维码推广功能:创建邀请码邀请新用户,但是没有二维码生成API