Skip to content

Commit c56699a

Browse files
committed
add debug assert warning
1 parent 098707b commit c56699a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/store/re_chunk/src/iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ where
347347
{
348348
let Some(values) = array.downcast_array_ref::<ArrowPrimitiveArray<P>>() else {
349349
if cfg!(debug_assertions) {
350-
panic!("downcast failed for {component_descriptor}, data discarded");
350+
panic!("[DEBUG ASSERT] downcast failed for {component_descriptor}, data discarded");
351351
} else {
352352
re_log::error_once!("downcast failed for {component_descriptor}, data discarded");
353353
}

0 commit comments

Comments
 (0)