Skip to content

Commit

Permalink
chore: remove dbg statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgehermo9 committed Jan 19, 2025
1 parent e63e2bf commit 0e32685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/socket/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ pub(super) fn udp(
buf.resize(max_length + 1, 0);
tokio::select! {
recv = socket.recv_from(&mut buf) => {
let (byte_size, address) = match dbg!(recv) {
let (byte_size, address) = match recv {
Ok(res) => res,
Err(error) => {
#[cfg(windows)]
Expand Down

0 comments on commit 0e32685

Please sign in to comment.