Skip to content

Commit

Permalink
Downgrade duplicate packet message to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc authored and djc committed Nov 7, 2023
1 parent ab280e4 commit ca0fae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quinn-proto/src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2098,7 +2098,7 @@ impl Connection {

let is_duplicate = |n| self.spaces[packet.header.space()].dedup.insert(n);
if number.map_or(false, is_duplicate) {
warn!("discarding possible duplicate packet");
debug!("discarding possible duplicate packet");
return;
} else if self.state.is_handshake() && packet.header.is_short() {
// TODO: SHOULD buffer these to improve reordering tolerance.
Expand Down

0 comments on commit ca0fae8

Please sign in to comment.