Remove unused prints

This commit is contained in:
Sofia 2026-07-17 19:08:56 +03:00
parent 2721021f7b
commit 4d843d2ccb

View File

@ -331,8 +331,6 @@ impl<T: std::fmt::Debug + Clone + Serialize + DeserializeOwned + Send + Sync + '
// Clear all messages from the queue that the other peer has // Clear all messages from the queue that the other peer has
// already seen // already seen
println!("{:?}", conn.reliable_queue);
println!("{:?}", msgs.ack);
conn.reliable_queue.retain(|v| v.message_id > msgs.ack); conn.reliable_queue.retain(|v| v.message_id > msgs.ack);
// Process all messages that have not been previously seen // Process all messages that have not been previously seen