diff --git a/src/packet/encryption.rs b/src/packet/encryption.rs index 07c1d45..b0e43d0 100644 --- a/src/packet/encryption.rs +++ b/src/packet/encryption.rs @@ -33,8 +33,6 @@ pub(crate) fn decrypt( let mut cursor = Cursor::new(&data); T::read_options(&mut cursor, endian, ()) } else { - tracing::info!("NOTE: Not decrypting this IPC packet since no key was provided!"); - T::read_options(reader, endian, ()) } } @@ -61,8 +59,6 @@ pub(crate) fn encrypt( Ok(()) } else { - tracing::info!("NOTE: Not encrypting this IPC packet since no key was provided!"); - value.write_options(writer, endian, ()) } } diff --git a/src/packet/parsing.rs b/src/packet/parsing.rs index 79128a1..b343bb3 100644 --- a/src/packet/parsing.rs +++ b/src/packet/parsing.rs @@ -168,9 +168,6 @@ pub async fn send_packet( let buffer = cursor.into_inner(); - tracing::info!("Wrote response packet to outpacket.bin"); - write("outpacket.bin", &buffer).unwrap(); - socket .write_all(&buffer) .await