Skip to content

Commit

Permalink
tone down debugs from codec modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Thiery committed Dec 12, 2024
1 parent 3bce93e commit ae8b1e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/codec/framed_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ where
partial,
bytes,
)? {
tracing::debug!(?frame, "received");
tracing::trace!(?frame, "received");
return Poll::Ready(Some(Ok(frame)));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/codec/framed_write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ where
let span = tracing::trace_span!("FramedWrite::buffer", frame = ?item);
let _e = span.enter();

tracing::debug!(frame = ?item, "send");
tracing::trace!(frame = ?item, "send");

match item {
Frame::Data(mut v) => {
Expand Down

0 comments on commit ae8b1e4

Please sign in to comment.