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();