We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32972bc commit 22d62b9Copy full SHA for 22d62b9
large-scale-viz/high_perf_character_render/src/bin/render_compact_runs.rs
@@ -219,6 +219,10 @@ async fn run() -> Result<()> {
219
220
// Check if coord_index is in currently loaded chunk
221
if coord_index < loaded_chunk_start || coord_index >= loaded_chunk_end {
222
+ log::warn!(
223
+ "coord index not loaded! this should not happen! coord index: {} loaded start: {} loaded end: {}",
224
+ coord_index, loaded_chunk_start, loaded_chunk_end
225
+ );
226
continue; // Not in loaded chunk
227
}
228
0 commit comments