Write debug output only if debugparam.debugoutput is set

This commit is contained in:
Matthias Hochsteger 2024-10-24 11:35:35 +02:00
parent be79facdb3
commit 54e5de4395

View File

@ -161,7 +161,8 @@ void BoundaryLayerTool ::InterpolateGrowthVectors()
if (!points.Size())
{
cerr << "Could not find startpoint for edge " << edgenr << endl;
if (debugparam.debugoutput)
cerr << "Could not find startpoint for edge " << edgenr << endl;
continue;
}