We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40b2b35 commit 06e42ceCopy full SHA for 06e42ce
neqo-transport/src/recovery/mod.rs
@@ -615,7 +615,7 @@ impl LossRecovery {
615
}
616
617
qdebug!(
618
- "[{self}] ACK for {pn_space} - largest_acked={}",
+ "[{self}] ACK for {pn_space:?} - largest_acked={}",
619
largest_acked_pkt.pn()
620
);
621
@@ -700,7 +700,7 @@ impl LossRecovery {
700
701
/// Discard state for a given packet number space.
702
pub fn discard(&mut self, primary_path: &PathRef, space: PacketNumberSpace, now: Instant) {
703
- qdebug!("[{self}] Reset loss recovery state for {space}");
+ qdebug!("[{self}] Reset loss recovery state for {space:?}");
704
let mut path = primary_path.borrow_mut();
705
for p in self.spaces.drop_space(space) {
706
path.discard_packet(&p, now, &mut self.stats.borrow_mut());
0 commit comments