Commit bf3128c6 authored by Tomasz Włostowski's avatar Tomasz Włostowski

router: fix syntax error in PNS_LOGGER output files

parent 0f9b72c0
...@@ -70,7 +70,7 @@ void PNS_LOGGER::EndGroup() ...@@ -70,7 +70,7 @@ void PNS_LOGGER::EndGroup()
void PNS_LOGGER::Log ( const PNS_ITEM* aItem, int aKind, const std::string aName ) void PNS_LOGGER::Log ( const PNS_ITEM* aItem, int aKind, const std::string aName )
{ {
m_theLog << "aItem " << aKind << " " << aName << " "; m_theLog << "item " << aKind << " " << aName << " ";
m_theLog << aItem->Net() << " " << aItem->Layers().Start() << " " << m_theLog << aItem->Net() << " " << aItem->Layers().Start() << " " <<
aItem->Layers().End() << " " << aItem->Marker() << " " << aItem->Rank(); aItem->Layers().End() << " " << aItem->Marker() << " " << aItem->Rank();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment