Skip to content

Commit f397671

Browse files
committed
merge
2 parents a63d509 + c56699a commit f397671

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/store/re_chunk_store/src/writes.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,12 @@ impl ChunkStore {
382382
&& old_typ != list_array.value_type()
383383
{
384384
re_log::warn_once!(
385-
"Component '{}' with component type '{}' in entity '{}' changed type from {old_typ:?} to {:?}",
385+
"Component '{}' with component type '{}' on entity '{}' changed type from {} to {}",
386386
component_descr.component,
387387
component_type,
388388
chunk.entity_path(),
389-
list_array.value_type()
389+
re_arrow_util::format_data_type(&old_typ),
390+
re_arrow_util::format_data_type(&list_array.value_type())
390391
);
391392
}
392393

0 commit comments

Comments
 (0)