diff options
| author | mat <github@matdoes.dev> | 2022-10-07 23:57:31 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-10-07 23:57:31 -0500 |
| commit | 7c955c794aa2ea69f016970b221343a4cfc55b87 (patch) | |
| tree | 41a0456284e3e59d0e494d454977aa222935f922 | |
| parent | 6f6289376a0d9ffe7e58506824e37f6b380961c3 (diff) | |
| download | azalea-drasl-7c955c794aa2ea69f016970b221343a4cfc55b87.tar.xz | |
remove a println
| -rw-r--r-- | azalea-protocol/src/read.rs | 1 |
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); |
