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.
Display
1 parent d095704 commit 06c3734Copy full SHA for 06c3734
crates/top/rerun/src/commands/rrd/verify.rs
@@ -72,8 +72,7 @@ impl Verifier {
72
match re_sorbet::ChunkBatch::try_from(batch) {
73
Ok(chunk_batch) => self.verify_chunk_batch(&chunk_batch),
74
Err(err) => {
75
- self.errors
76
- .insert(format!("Failed to parse batch: {err:?}"));
+ self.errors.insert(format!("Failed to parse batch: {err}"));
77
}
78
79
@@ -88,7 +87,7 @@ impl Verifier {
88
87
89
if let Err(err) = self.verify_component_column(component_name, column) {
90
self.errors.insert(format!(
91
- "Failed to deserialize column {component_name:?}: {err:?}"
+ "Failed to deserialize column {component_name:?}: {err}"
92
));
93
94
0 commit comments