aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--azalea-protocol/src/read.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/azalea-protocol/src/read.rs b/azalea-protocol/src/read.rs
index 4c398e96..2f0391b9 100644
--- a/azalea-protocol/src/read.rs
+++ b/azalea-protocol/src/read.rs
@@ -213,7 +213,6 @@ where
// if we were given a cipher, decrypt the packet
if let Some(message) = framed.next().await {
let mut bytes = message.unwrap();
- println!("bytes: {:?}", bytes.len());
if let Some(cipher) = cipher {
azalea_crypto::decrypt_packet(cipher, &mut bytes);