diff --git a/frida_client/src/client.rs b/frida_client/src/client.rs index fe253d3..2650cd8 100644 --- a/frida_client/src/client.rs +++ b/frida_client/src/client.rs @@ -100,7 +100,7 @@ pub mod general { if let Ok(ciphered_d) = ciphered_data { let vpn_packet = UDPVpnPacket{ data: ciphered_d, nonce: nonce.to_vec()}; let serialized_data = vpn_packet.serialize(); - info!("Write to socket"); + //info!("Write to socket"); sock_snd.send(&serialized_data).await.unwrap(); } else { error!("Socket encryption failed.");