Disable debug/verbose flag before routing

This commit is contained in:
Eddie Hung 2018-11-09 17:09:25 -08:00
parent c67f1091ca
commit 4619b2d82f

View File

@ -767,8 +767,6 @@ bool Arch::place() { return placer1(getCtx(), Placer1Cfg(getCtx())); }
bool Arch::route() bool Arch::route()
{ {
getCtx()->debug = true;
getCtx()->verbose = true;
return router1(getCtx(), Router1Cfg(getCtx())); return router1(getCtx(), Router1Cfg(getCtx()));
} }