From 4d88f78184c68d9743fb7531079ec70f26d646cc Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 27 Mar 2025 18:56:26 -0400 Subject: [PATCH] Remove a good bit of log spam --- src/packet/encryption.rs | 4 ---- src/packet/parsing.rs | 3 --- 2 files changed, 7 deletions(-) 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