Skip to content

Commit

Permalink
add debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Jan 17, 2024
1 parent 5b571c1 commit 96aead5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions streamer/src/nonblocking/quic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,7 @@ async fn packet_batch_sender(
let (do_track, signature) = track_packet(&packet_batch[i])
.or_else(|_| Ok::<(bool, Option<&[u8; 64]>), PacketError>((false, None)))
.unwrap();
info!("Tracking txn? {do_track} for {:?}", signature);
if do_track {
packet_perf_measure
.insert(signature.unwrap().clone(), packet_accumulator.start_time);
Expand Down

0 comments on commit 96aead5

Please sign in to comment.