chore(router/ng/mod): Get rid of unnecessary debugging output in calculate_navmesh

This commit is contained in:
Ellen Emilia Anna Zscheile 2025-06-30 15:16:21 +02:00
parent e3790eb366
commit 30c6df31ab
1 changed files with 0 additions and 2 deletions

View File

@ -386,7 +386,6 @@ pub fn calculate_navmesh<R: AccessRules>(
*/
}
Some(x) => {
log::debug!("calculate_navmesh: successfully found boundary from node {:?}, direction {:?}", rhs, direction);
x.map(|(band_uid, _)| {
RelaxedPath::Normal(
*board.bands_by_id().get_by_right(&band_uid).unwrap(),
@ -432,7 +431,6 @@ pub fn calculate_navmesh<R: AccessRules>(
*/
}
Some(x) => {
log::debug!("calculate_navmesh: successfully found boundary from node {:?}, direction {:?}", lhs, direction);
x.map(|(band_uid, _)| {
RelaxedPath::Normal(
*board.bands_by_id().get_by_right(&band_uid).unwrap(),