From 01224e6a0645f2b4ab2a87b5c282d4a107b8ff12 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 26 Nov 2021 23:33:05 +0100 Subject: [PATCH] Forgot to disable debug in Track::repair() ... --- katana/src/Track.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/katana/src/Track.cpp b/katana/src/Track.cpp index 5488684c..cdca7886 100644 --- a/katana/src/Track.cpp +++ b/katana/src/Track.cpp @@ -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; }