remove toVisit logging

This commit is contained in:
C9Glax 2023-02-08 19:06:04 +01:00
parent 9d2be7d972
commit 55b9e87b7e

View File

@ -32,7 +32,7 @@ public class Pathfinder
while (toVisit.Count > 0 && !stop)
{
Console.WriteLine("toVisit-length: {0}", toVisit.Count);
//Console.WriteLine("toVisit-length: {0}", toVisit.Count);
closestNodeToGoal = toVisit.First();
foreach (OsmNode node in toVisit)
{