* ./katabatic:
- Change: In KatabaticEngine, change messages of unmanaged nets from warning to info.
This commit is contained in:
parent
8c79521982
commit
2913d8aea1
|
@ -506,8 +506,8 @@ namespace Katabatic {
|
||||||
if ( net->getType() == Net::Type::GROUND ) excludedType = "GROUND";
|
if ( net->getType() == Net::Type::GROUND ) excludedType = "GROUND";
|
||||||
if ( net->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
|
if ( net->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
|
||||||
if ( excludedType ) {
|
if ( excludedType ) {
|
||||||
cerr << Warning("%s is not a routable net (%s,excluded)."
|
cout << "[INFO] " << getString(*net).c_str() << " is not a routable net ("
|
||||||
,getString(*net).c_str(),excludedType) << endl;
|
<< excludedType << ",excluded)." << endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ( af->isBLOCKAGE(net->getName()) ) continue;
|
if ( af->isBLOCKAGE(net->getName()) ) continue;
|
||||||
|
@ -522,8 +522,8 @@ namespace Katabatic {
|
||||||
if ( (*it)->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
|
if ( (*it)->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
|
||||||
if ( af->isBLOCKAGE((*it)->getName()) ) excludedType = "BLOCKAGE";
|
if ( af->isBLOCKAGE((*it)->getName()) ) excludedType = "BLOCKAGE";
|
||||||
if ( excludedType ) {
|
if ( excludedType ) {
|
||||||
cerr << Warning("%s is not a routable net (%s), removed from set."
|
cout << "[INFO] " << getString(*it).c_str() << " is not a routable net ("
|
||||||
,getString(*it).c_str(),excludedType) << endl;
|
<< excludedType << "), removed from set." << endl;
|
||||||
} else
|
} else
|
||||||
_routingNets.insert ( *it );
|
_routingNets.insert ( *it );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue