aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-10-07 23:57:31 -0500
committermat <github@matdoes.dev>2022-10-07 23:57:31 -0500
commit7c955c794aa2ea69f016970b221343a4cfc55b87 (patch)
tree41a0456284e3e59d0e494d454977aa222935f922 /azalea-protocol
parent6f6289376a0d9ffe7e58506824e37f6b380961c3 (diff)
downloadazalea-drasl-7c955c794aa2ea69f016970b221343a4cfc55b87.tar.xz
remove a println
Diffstat (limited to 'azalea-protocol')
-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);