From a853b37c9bba996e3c99edc5c93f7fcc382798e7 Mon Sep 17 00:00:00 2001 From: "alterwain@protonmail.com" Date: Tue, 10 Dec 2024 18:44:04 +0200 Subject: [PATCH] modified: frida_core/src/linux_tun.rs --- frida_core/src/linux_tun.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frida_core/src/linux_tun.rs b/frida_core/src/linux_tun.rs index 472daf8..6aa641b 100644 --- a/frida_core/src/linux_tun.rs +++ b/frida_core/src/linux_tun.rs @@ -18,7 +18,7 @@ pub fn create(cfg: AbstractDevice) -> (DeviceReader, DeviceWriter) { .unwrap(), ); - println!("tun created, name: {}, fd: {}", tun.name(), tun.as_raw_fd()); + info!("tun created, name: {}, fd: {}", tun.name(), tun.as_raw_fd()); let tun_writer = tun.clone();