Forgot to disable debug in Track::repair() ...

This commit is contained in:
Jean-Paul Chaput 2021-11-26 23:33:05 +01:00
parent d8218d0698
commit 01224e6a06
1 changed files with 2 additions and 2 deletions

View File

@ -1003,7 +1003,7 @@ namespace Katana {
uint32_t Track::repair () const
{
if ((getIndex() == 1011) and isHorizontal()) DebugSession::open( 150, 160 );
//if ((getIndex() == 1011) and isHorizontal()) DebugSession::open( 150, 160 );
cdebug_log(159,0) << "Track::repair() " << this << endl;
if (_segments.empty()) {
@ -1122,7 +1122,7 @@ namespace Katana {
if (spacing > 10*getLayerGauge()->getPitch())
fillHole( lastTargetU, getMax() );
if ((getIndex() == 1011) and isHorizontal()) DebugSession::close();
//if ((getIndex() == 1011) and isHorizontal()) DebugSession::close();
return gaps;
}