feat: 限制远程应用最大重连次数为 50,增强错误日志信息;调整 cnb-board 路由逻辑

This commit is contained in:
2026-02-24 23:53:21 +08:00
parent 37e00a9ff3
commit 22ef776b27
3 changed files with 4 additions and 4 deletions

View File

@@ -207,7 +207,7 @@ export class RemoteApp {
this.emitter.emit('message', data);
}
onError(error: any) {
console.error('远程应用错误:', this.id, error);
console.error(`[remote-app] 远程应用错误: ${this.id}`, error);
this.isError = true;
this.emitter.emit('error', error);
}