* ./katabatic:

- Change: In KatabaticEngine, change messages of unmanaged nets from warning
        to info.
This commit is contained in:
Jean-Paul Chaput 2012-12-22 18:22:38 +00:00
parent 8c79521982
commit 2913d8aea1
1 changed files with 4 additions and 4 deletions

View File

@ -506,8 +506,8 @@ namespace Katabatic {
if ( net->getType() == Net::Type::GROUND ) excludedType = "GROUND";
if ( net->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
if ( excludedType ) {
cerr << Warning("%s is not a routable net (%s,excluded)."
,getString(*net).c_str(),excludedType) << endl;
cout << "[INFO] " << getString(*net).c_str() << " is not a routable net ("
<< excludedType << ",excluded)." << endl;
continue;
}
if ( af->isBLOCKAGE(net->getName()) ) continue;
@ -522,8 +522,8 @@ namespace Katabatic {
if ( (*it)->getType() == Net::Type::CLOCK ) excludedType = "CLOCK";
if ( af->isBLOCKAGE((*it)->getName()) ) excludedType = "BLOCKAGE";
if ( excludedType ) {
cerr << Warning("%s is not a routable net (%s), removed from set."
,getString(*it).c_str(),excludedType) << endl;
cout << "[INFO] " << getString(*it).c_str() << " is not a routable net ("
<< excludedType << "), removed from set." << endl;
} else
_routingNets.insert ( *it );
}