File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ where
347
347
{
348
348
let Some ( values) = array. downcast_array_ref :: < ArrowPrimitiveArray < P > > ( ) else {
349
349
if cfg ! ( debug_assertions) {
350
- panic ! ( "downcast failed for {component_descriptor}, data discarded" ) ;
350
+ panic ! ( "[DEBUG ASSERT] downcast failed for {component_descriptor}, data discarded" ) ;
351
351
} else {
352
352
re_log:: error_once!( "downcast failed for {component_descriptor}, data discarded" ) ;
353
353
}
Original file line number Diff line number Diff line change @@ -382,9 +382,12 @@ impl ChunkStore {
382
382
&& old_typ != list_array. value_type ( )
383
383
{
384
384
re_log:: warn_once!(
385
- "Component column '{}' changed type from {old_typ:?} to {:?}" ,
385
+ "Component '{}' with component type '{}' on entity '{}' changed type from {} to {}" ,
386
+ component_descr. component,
386
387
component_type,
387
- list_array. value_type( )
388
+ chunk. entity_path( ) ,
389
+ re_arrow_util:: format_data_type( & old_typ) ,
390
+ re_arrow_util:: format_data_type( & list_array. value_type( ) )
388
391
) ;
389
392
}
390
393
You can’t perform that action at this time.
0 commit comments