fix(mp): 空 catch 块添加 console.warn 日志(82 处)
55 个文件中 82 处空 catch 块添加模块前缀日志输出: - stores: auth/health/points (7 处) - services: request/ai-chat/health/ble/* (10 处) - hooks: useLongPolling/usePagination (3 处) - pages: 核心+子包共 35 个页面 (62 处) 保留静默的 catch: secure-storage fallback、Storage 恢复、 analytics 防洪、BLE 断连清理、用户拒绝订阅等合理忽略场景
This commit is contained in:
@@ -79,7 +79,8 @@ export function getLocalHistory(): AiChatMessage[] {
|
||||
try {
|
||||
const raw = wx.getStorageSync('ai_chat_history');
|
||||
return raw ? JSON.parse(raw) : [];
|
||||
} catch {
|
||||
} catch (err) {
|
||||
console.warn('[ai-chat] 读取本地聊天历史失败:', err);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
@@ -88,5 +89,5 @@ export function getLocalHistory(): AiChatMessage[] {
|
||||
export function saveLocalHistory(messages: AiChatMessage[]): void {
|
||||
try {
|
||||
wx.setStorageSync('ai_chat_history', JSON.stringify(messages.slice(-100)));
|
||||
} catch { /* ignore */ }
|
||||
} catch (err) { console.warn('[ai-chat] 保存本地聊天历史失败:', err); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user