* 刷新运行日志
()
| 305 | * 刷新运行日志 |
| 306 | */ |
| 307 | async function refreshLogTab(): Promise<void> { |
| 308 | showSkeleton('logContent', 5); |
| 309 | try { |
| 310 | const logs = await getLoggerInfo(); |
| 311 | hideSkeleton('logContent'); |
| 312 | renderLogInfo('logContent', logs); |
| 313 | } catch (e) { |
| 314 | console.error('刷新日志失败:', e); |
| 315 | hideSkeleton('logContent'); |
| 316 | renderLogInfo('logContent', [t('getLogFailed')]); |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * 初始化自定义语言下拉组件 |
nothing calls this directly
no test coverage detected