added logging to data

This commit is contained in:
DJMrTV 2025-01-23 15:25:21 +01:00
commit 019c21c8e1

View file

@ -238,7 +238,7 @@ impl SocketImpl {
self.socket.send_to(&vec, connection.regular_socket_addr).await.expect("failed to send data back"); self.socket.send_to(&vec, connection.regular_socket_addr).await.expect("failed to send data back");
} }
DATA => { DATA => {
info!("{:?}", packet);
} }
_ => unimplemented!("unimplemented packet type: {}", packet.header.types_and_flags.get_types()) _ => unimplemented!("unimplemented packet type: {}", packet.header.types_and_flags.get_types())
} }