From 6232bcb0b1db69d4418cf87d6d20c6b862703dbf Mon Sep 17 00:00:00 2001 From: asxalex Date: Fri, 5 Jul 2024 23:34:17 +0800 Subject: [PATCH] added netsh output --- src/network/tun_win.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/tun_win.rs b/src/network/tun_win.rs index 566c339..40b9725 100644 --- a/src/network/tun_win.rs +++ b/src/network/tun_win.rs @@ -66,7 +66,7 @@ impl Iface { match res { Ok(r) => { - debug!("netsh ok: {:?}", r); + debug!("netsh ok: {:?}", String::from_utf8_lossy(&r.stdout)); } Err(e) => { error!("failed to run netsh: {}", e.to_string());