diff --git a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp index dcbb6ef334f86863ff1bb47234cdffad01342938..e0ecfe0b7453484ae9cc872944f8a85cfa0cb0bd 100644 --- a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp +++ b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp @@ -54,9 +54,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( OGS_FATAL( "BoundaryElementsAtPoint: the mesh node searcher found {:d} points " "near the requested point ({:f}, {:f}, {:f}) in the mesh, while " - "exactly " - "one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has distance " - "{:f}.", + "exactly one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has " + "distance {:f}.", node_ids.size(), _point[0], _point[1], _point[2], mesh_nodes[nearest_node_id]->getID(), (*mesh_nodes[nearest_node_id])[0], @@ -67,9 +66,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( WARN( "BoundaryElementsAtPoint: the mesh node searcher found {:d} points " "near the requested point ({:f}, {:f}, {:f}) in the mesh, while " - "exactly " - "one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has distance " - "{:f}.", + "exactly one is expected. Node (id={:d}) ({:f}, {:f}, {:f}) has " + "distance {:f}.", node_ids.size(), _point[0], _point[1], _point[2], mesh_nodes[nearest_node_id]->getID(), (*mesh_nodes[nearest_node_id])[0], (*mesh_nodes[nearest_node_id])[1], (*mesh_nodes[nearest_node_id])[2], diff --git a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp index 77a9261b44f31afbeb90d52c64ac09867eb71ef5..ee3977f59b7c84273b547f0da9d3e45ea7535876 100644 --- a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp +++ b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp @@ -37,8 +37,7 @@ std::vector<std::size_t> identifySubdomainMeshNodes( OGS_FATAL( "Expected to find exactly one node in the bulk mesh for each node " "of the subdomain; Found {:d} nodes in the bulk mesh out of {:d} " - "nodes " - "in the subdomain.", + "nodes in the subdomain.", bulk_node_ids.size(), subdomain_mesh.getNumberOfNodes()); } @@ -174,8 +173,7 @@ void updateOrCheckExistingSubdomainProperty( // WARN( "There is already a '{:s}' property present in the subdomain mesh " - "'{:s}' " - "and it is not equal to the newly computed values.", + "'{:s}' and it is not equal to the newly computed values.", property_name.c_str(), mesh.getName().c_str());