We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0729754 commit d54fbb3Copy full SHA for d54fbb3
src/types/batch.rs
@@ -56,7 +56,7 @@ impl TryFrom<Bytes> for InboundData {
56
#[instrument(level = "debug", skip(bytes), fields(buf_len = bytes.len(), bytes = tracing::field::Empty))]
57
fn try_from(bytes: Bytes) -> Result<Self, Self::Error> {
58
if enabled!(Level::TRACE) {
59
- tracing::span::Span::current().record("bytes", &format!("0x{:x}", bytes));
+ tracing::span::Span::current().record("bytes", format!("0x{:x}", bytes));
60
}
61
debug!("Parsing inbound data");
62
0 commit comments