Skip to content

Commit 06c3734

Browse files
committed
Format errors with Display
1 parent d095704 commit 06c3734

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/top/rerun/src/commands/rrd/verify.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ impl Verifier {
7272
match re_sorbet::ChunkBatch::try_from(batch) {
7373
Ok(chunk_batch) => self.verify_chunk_batch(&chunk_batch),
7474
Err(err) => {
75-
self.errors
76-
.insert(format!("Failed to parse batch: {err:?}"));
75+
self.errors.insert(format!("Failed to parse batch: {err}"));
7776
}
7877
}
7978
}
@@ -88,7 +87,7 @@ impl Verifier {
8887

8988
if let Err(err) = self.verify_component_column(component_name, column) {
9089
self.errors.insert(format!(
91-
"Failed to deserialize column {component_name:?}: {err:?}"
90+
"Failed to deserialize column {component_name:?}: {err}"
9291
));
9392
}
9493
}

0 commit comments

Comments
 (0)