🔇 remove `dbg!` macro call that looks bad when round-tripped through crates.io

main
_ 2021-12-06 00:17:26 +00:00
parent 2864a26fe2
commit 2e4b723c18
1 changed files with 0 additions and 1 deletions

View File

@ -185,7 +185,6 @@ fn recv_msg_from (socket: &UdpSocket) -> Result <(Message, SocketAddr), AppError
{
let mut buf = vec! [0u8; PACKET_SIZE];
let (bytes_recved, remote_addr) = socket.recv_from (&mut buf)?;
dbg! (remote_addr);
buf.truncate (bytes_recved);
let msg = Message::from_slice (&buf)?;