ENH: patchSeed: fix debug message

This commit is contained in:
mattijs
2022-06-02 09:21:37 +01:00
parent 903f45dcdc
commit 49d0e82842

View File

@ -234,13 +234,14 @@ void Foam::patchSeedSet::calcSamples
subset.setSize(myMaxPoints);
// Subset patchFaces
patchFaces = labelUIndList(patchFaces, subset)();
if (debug)
{
Pout<< "In random mode : selected " << patchFaces.size()
Pout<< "In random mode : selected " << subset.size()
<< " faces out of " << patchFaces.size() << endl;
}
patchFaces = labelUIndList(patchFaces, subset)();
}