style: 将启动超时提示中的中文冒号改为半角冒号

- 将启动超时提示中的中文冒号改为半角冒号以保持符号一致性。
This commit is contained in:
2026-01-16 23:22:42 +08:00
parent 319bb38177
commit 4c63ddd744

View File

@@ -80,7 +80,7 @@ pub fn spawn_sidecar(app_handle: tauri::AppHandle) {
// 超时检查 // 超时检查
if start_time.elapsed() > timeout { if start_time.elapsed() > timeout {
eprintln!("✗ 启动超时Server 未能在 5 秒内启动"); eprintln!("✗ 启动超时: Server 未能在 5 秒内启动");
break; break;
} }
} }