Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Nov 8, 2023
1 parent ec3314c commit a9f9bf6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/transport/quinn_flume_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ impl FlumeSocketInner {
contents: transmit.contents.clone(),
segment_size: transmit.segment_size,
};
tracing::debug!("S sending {} {:?}", transmit.contents.len(), transmit.segment_size);
tracing::debug!(
"S sending {} {:?}",
transmit.contents.len(),
transmit.segment_size
);
let res = self.sender.poll_ready_unpin(cx);
match res {
task::Poll::Ready(Ok(())) => {
Expand Down

0 comments on commit a9f9bf6

Please sign in to comment.