diff --git a/pcbnew/router/pns_router.cpp b/pcbnew/router/pns_router.cpp index f94a8a4e63..20967bcb3b 100644 --- a/pcbnew/router/pns_router.cpp +++ b/pcbnew/router/pns_router.cpp @@ -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 ); + } } }