Removed from Logging

This commit is contained in:
C9Glax 2022-05-05 16:29:02 +02:00
parent 665d9d83b8
commit dd19505dbb
2 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace OpenStreetMap_Importer
if(currentNodeType == nodeType.WAY) if(currentNodeType == nodeType.WAY)
{ {
ImportWay(currentWay); ImportWay(currentWay);
logger.log(loglevel.INFO, "Way nodes: {0} Weight: {1}", currentWay.nodes.Count); logger.log(loglevel.INFO, "Way nodes: {0}", currentWay.nodes.Count);
} }
currentNodeType = nodeType.WAY; currentNodeType = nodeType.WAY;
currentNode = nullNode; currentNode = nullNode;

View File

@ -9,6 +9,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Graph\Graph.csproj" /> <ProjectReference Include="..\Graph\Graph.csproj" />
<ProjectReference Include="..\Logging\Logging.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>