BOARD_NETLIST_UPDATER: better warning message (I hope...) in Report.

Fixes #14548
https://gitlab.com/kicad/code/kicad/issues/14548
This commit is contained in:
jean-pierre charras 2023-04-17 14:30:47 +02:00
parent 469fe76994
commit d0676118c1
1 changed files with 2 additions and 1 deletions

View File

@ -523,7 +523,8 @@ bool BOARD_NETLIST_UPDATER::updateComponentPadConnections( FOOTPRINT* aFootprint
else if( pad->IsOnCopperLayer() && !pad->GetNumber().IsEmpty() )
{
// pad is connectable but has no net found in netlist
msg.Printf( _( "No net found for symbol %s pin %s." ),
msg.Printf( _( "No net found for component %s pad %s (no pin %s in symbol)." ),
pad->GetNumber(),
aFootprint->GetReference(),
pad->GetNumber() );
m_reporter->Report( msg, RPT_SEVERITY_WARNING);