1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

remove debug print

This commit is contained in:
mat 2023-12-03 16:18:28 -06:00
parent 3e168a33c9
commit d617c04581

View file

@ -346,7 +346,6 @@ impl Client {
packet = conn.read() => packet?,
Some(packet) = ecs_packets_rx.recv() => {
// write this packet to the server
println!("wrote packet to server {:?}", packet);
conn.write(packet).await?;
continue;
}