Skip to content

Commit

Permalink
fix: comment logs
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Oct 18, 2023
1 parent 8178d50 commit d72633c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/algorithms/src/clustering/rtree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ fn initial_solution(
}
highest = best;
}
log::warn!("Blocked: {} | highest {}", blocked_points.len(), highest);
// log::warn!("Blocked: {} | highest {}", blocked_points.len(), highest);
log::info!(
"[RTREE] Finished initial solution: {}s",
time.elapsed().as_secs_f32()
Expand Down Expand Up @@ -305,6 +305,6 @@ fn dedupe(
time.elapsed().as_secs_f32()
);

log::warn!("Seen: {}", seen_points.len());
// log::warn!("Seen: {}", seen_points.len());
(solution, seen_points.len())
}

0 comments on commit d72633c

Please sign in to comment.