rtiow: squelch kdtree log spam.

This commit is contained in:
Bill Thiede 2023-01-28 13:04:01 -08:00
parent 2c490b7e83
commit ef737c6df9

View File

@ -104,8 +104,8 @@ impl KDTree {
}),
_ => panic!("Unreachable"),
};
info!("left_half {:?}", left_half);
info!("right_half {:?}", right_half);
//info!("left_half {:?}", left_half);
//info!("right_half {:?}", right_half);
if left_half.is_empty() {
return KDTree::Leaf(Box::new(HitableList::new(right_half)));
};