Skip to content

Commit 3f2d9b9

Browse files
committed
Improve error message on accidental component type change
1 parent 83086c6 commit 3f2d9b9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/store/re_chunk_store/src/writes.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,10 @@ impl ChunkStore {
382382
&& old_typ != list_array.value_type()
383383
{
384384
re_log::warn_once!(
385-
"Component column '{}' changed type from {old_typ:?} to {:?}",
385+
"Component '{}' with component type '{}' in entity '{}' changed type from {old_typ:?} to {:?}",
386+
component_descr.component,
386387
component_type,
388+
chunk.entity_path(),
387389
list_array.value_type()
388390
);
389391
}

0 commit comments

Comments
 (0)