Skip to content

Commit

Permalink
revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sterlingdeng committed Sep 27, 2024
1 parent ea3bb6a commit caa86bd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions quinn-proto/src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2243,10 +2243,8 @@ impl Connection {
}
Ok((packet, number)) => {
let span = match number {
Some(pn) => {
trace_span!("recv", space = ?packet.header.space(), pn, side=?self.side)
}
None => trace_span!("recv", space = ?packet.header.space(), side=?self.side),
Some(pn) => trace_span!("recv", space = ?packet.header.space(), pn),
None => trace_span!("recv", space = ?packet.header.space()),
};
let _guard = span.enter();

Expand Down

0 comments on commit caa86bd

Please sign in to comment.