忽略绑定失败的错误

This commit is contained in:
lbl8603
2024-08-07 23:14:13 +08:00
parent 803af55246
commit 7e0de2c4e6
4 changed files with 23 additions and 8 deletions
+1
View File
@@ -41,6 +41,7 @@ fn main0(config: Config, _show_cmd: bool) {
let vnt_util = match Vnt::new(config, callback::VntHandler {}) {
Ok(vnt) => vnt,
Err(e) => {
log::error!("vnt create error {:?}", e);
println!("error: {:?}", e);
std::process::exit(1);
}