移除聊天组件中的调试日志

This commit is contained in:
pingchuan
2025-06-06 15:31:36 +08:00
parent 1b79f973da
commit ab960f6dd0
6 changed files with 150 additions and 150 deletions
+2 -2
View File
@@ -389,7 +389,7 @@ export default function Chat() {
(async () => {
try {
console.log('🚀 开始初始化聊天应用...');
// console.log('🚀 开始初始化聊天应用...');
// 并行获取会话列表和应用参数
const [conversationData, appParams] = await Promise.all([
@@ -441,7 +441,7 @@ export default function Chat() {
}
setInited(true);
console.log('✅ 聊天应用初始化完成');
// console.log('✅ 聊天应用初始化完成');
} catch (e: any) {
console.error('❌ 初始化失败:', e);
if (e.status === 404) {