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.
2 parents a63d509 + c56699a commit f397671Copy full SHA for f397671
crates/store/re_chunk_store/src/writes.rs
@@ -382,11 +382,12 @@ impl ChunkStore {
382
&& old_typ != list_array.value_type()
383
{
384
re_log::warn_once!(
385
- "Component '{}' with component type '{}' in entity '{}' changed type from {old_typ:?} to {:?}",
+ "Component '{}' with component type '{}' on entity '{}' changed type from {} to {}",
386
component_descr.component,
387
component_type,
388
chunk.entity_path(),
389
- list_array.value_type()
+ re_arrow_util::format_data_type(&old_typ),
390
+ re_arrow_util::format_data_type(&list_array.value_type())
391
);
392
}
393
0 commit comments