router: fix syntax error in PNS_LOGGER output files

This commit is contained in:
Tomasz Włostowski 2015-03-02 17:20:48 +01:00
parent 0f9b72c0bf
commit bf3128c683
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ void PNS_LOGGER::EndGroup()
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() << " " <<
aItem->Layers().End() << " " << aItem->Marker() << " " << aItem->Rank();