debug message added

This commit is contained in:
Martin Brodbeck 2023-10-05 21:17:04 +02:00
parent fd69895d69
commit 5914104002

View file

@ -117,6 +117,9 @@ fn broadcast(
if rec.0 == client {
continue;
}
debug!("Broadcasting to client {}", rec.0);
socket.send_to(&data, &rec.0).unwrap();
}
}