Skip to content

Commit 740d3a8

Browse files
committed
Fix code format in trace normalizer
1 parent b9320a3 commit 740d3a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libdd-trace-normalization/src/normalizer.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ pub fn normalize_trace(trace: &mut [pb::Span]) -> anyhow::Result<()> {
6262
for span in trace {
6363
if span.trace_id != first_trace_id {
6464
anyhow::bail!(format!(
65-
"Normalize Trace Error: Trace has foreign span: {:?}",
66-
span
65+
"Normalize Trace Error: Trace has foreign span: {span:?}."
6766
));
6867
}
6968
normalize_span(span)?;

0 commit comments

Comments
 (0)