Skip to content

Commit 6d736fb

Browse files
committed
[arcane,mesh] Change DynamicMeshChecker traces: print "MeshChecker::" instead of "DynamicMesh::".
1 parent 02d89b9 commit 6d736fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

arcane/src/arcane/mesh/DynamicMeshChecker.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ checkValidMeshFull()
215215
void DynamicMeshChecker::
216216
checkValidConnectivity()
217217
{
218-
String func_name = "DynamicMesh::checkValidConnectivity";
218+
String func_name = "MeshChecker::checkValidConnectivity";
219219
debug() << func_name << " check";
220220

221221
// Appelle la méthode de vérification de chaque famille.
@@ -389,7 +389,7 @@ checkValidConnectivity()
389389
void DynamicMeshChecker::
390390
updateAMRFaceOrientation()
391391
{
392-
String func_name = "DynamicMesh::updateAMRFaceOrientation";
392+
String func_name = "MeshChecker::updateAMRFaceOrientation";
393393
FaceReorienter fr(m_mesh);
394394
ENUMERATE_FACE(iface,m_mesh->allFaces()){
395395
Face face = *iface;
@@ -447,7 +447,7 @@ _checkFacesOrientation()
447447
if (is_1d)
448448
return;
449449

450-
String func_name = "DynamicMesh::_checkFacesOrientation";
450+
String func_name = "MeshChecker::_checkFacesOrientation";
451451

452452
Int64UniqueArray m_work_face_sorted_nodes;
453453
IntegerUniqueArray m_work_face_nodes_index;
@@ -522,7 +522,7 @@ _checkFacesOrientation()
522522
void DynamicMeshChecker::
523523
_checkValidItemOwner(IItemFamily* family)
524524
{
525-
String func_name = "DynamicMesh::_checkValidItemOwner";
525+
String func_name = "MeshChecker::_checkValidItemOwner";
526526

527527
// Pour les maillages non sous-maillages, il faut que tout sub-item est une cellule voisine de même propriétaire
528528
// Pour les sous-maillages, il faut, en plus, que tout item soit de même propriétaire que son parent

0 commit comments

Comments
 (0)