modified: frida_core/src/linux_tun.rs

This commit is contained in:
Michael Wain 2024-12-10 18:44:04 +02:00
parent 0eae9d8f6b
commit a853b37c9b

View File

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