Log supression

modified:   frida_client/src/client.rs
This commit is contained in:
Michael Wain 2024-12-11 04:07:15 +03:00
parent bce62bc5f4
commit 34504c562a

View File

@ -100,7 +100,7 @@ pub mod general {
if let Ok(ciphered_d) = ciphered_data { if let Ok(ciphered_d) = ciphered_data {
let vpn_packet = UDPVpnPacket{ data: ciphered_d, nonce: nonce.to_vec()}; let vpn_packet = UDPVpnPacket{ data: ciphered_d, nonce: nonce.to_vec()};
let serialized_data = vpn_packet.serialize(); let serialized_data = vpn_packet.serialize();
info!("Write to socket"); //info!("Write to socket");
sock_snd.send(&serialized_data).await.unwrap(); sock_snd.send(&serialized_data).await.unwrap();
} else { } else {
error!("Socket encryption failed."); error!("Socket encryption failed.");