router: log via toggle events

This commit is contained in:
Tomasz Wlostowski 2022-03-08 00:45:20 +01:00
parent a4ad47cd08
commit 752ba2ed76
1 changed files with 5 additions and 0 deletions

View File

@ -794,6 +794,11 @@ void ROUTER::ToggleViaPlacement()
{
bool toggle = !m_placer->IsPlacingVia();
m_placer->ToggleVia( toggle );
if( m_logger )
{
m_logger->Log( LOGGER::EVT_TOGGLE_VIA );
}
}
}