feat(prudp): clean up logging

This commit is contained in:
DJMrTV 2025-02-05 16:32:03 +01:00
commit e0669ddecc
2 changed files with 1 additions and 13 deletions

View file

@ -24,8 +24,6 @@ impl RMCProtocolServer{
return;
};
println!("recieved rmc message: {{ protocol: {}, method: {}}}", rmc.protocol_id, rmc.method_id);
for proto in &self.0 {
if let Some(response) = proto(&rmc, connection).await {
send_response(&packet, &socket, connection, response).await;