Skip to content

Commit 0acdfca

Browse files
committed
Misc: Reduces verbosity of a log message in quest's PointInCell query
1 parent 773f8d9 commit 0acdfca

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/axom/quest/detail/PointInCellMeshWrapper_mfem.hpp

+7-6
Original file line numberDiff line numberDiff line change
@@ -408,12 +408,13 @@ class PointInCellMeshWrapper<quest_point_in_cell_mfem_tag>
408408
}
409409

410410
// Output some information
411-
SLIC_DEBUG("Mesh nodes fec -- "
412-
<< nodalFEColl->Name() << " with ordering "
413-
<< nodalFESpace->GetOrdering()
414-
<< "\n\t -- Positive nodes are fec -- "
415-
<< positiveNodes->FESpace()->FEColl()->Name()
416-
<< " with ordering " << positiveNodes->FESpace()->GetOrdering());
411+
SLIC_DEBUG_ROOT("Mesh nodes fec -- "
412+
<< nodalFEColl->Name() << " with ordering "
413+
<< nodalFESpace->GetOrdering()
414+
<< "\n\t -- Positive nodes are fec -- "
415+
<< positiveNodes->FESpace()->FEColl()->Name()
416+
<< " with ordering "
417+
<< positiveNodes->FESpace()->GetOrdering());
417418

418419
/// For each element, compute bounding box, and overall mesh bbox
419420
mfem::Array<int> dofIndices;

0 commit comments

Comments
 (0)