Adjusted ToString() to include startId

This commit is contained in:
glax 2023-04-01 00:39:37 +02:00
parent e2a50250b8
commit cd1584eee7

View File

@ -19,6 +19,6 @@ public class OsmWay
public override string ToString()
{
return $"EDGE WayID: {wayId} NeighborID: {neighborId} {neighborRegion}";
return $"EDGE WayID: {wayId} StartID: {startId} NeighborID: {neighborId} in {neighborRegion}";
}
}