diff --git a/MeshLib/Mesh.cpp b/MeshLib/Mesh.cpp index f56584b75872d482869796b46b1b4cb4ef5f57ed..d3958e8f91f1251fd73ac97efb1a2b14fdd8abab 100644 --- a/MeshLib/Mesh.cpp +++ b/MeshLib/Mesh.cpp @@ -306,9 +306,10 @@ void Mesh::checkNonlinearNodeIDs() const if (e->getNodeIndex(i) >= getNumberOfBaseNodes()) continue; - ERR("Found a nonlinear node whose ID (%d) is smaller than the " - "number of base node IDs (%d)." - "Some functions may not work properly.", + WARN( + "Found a nonlinear node whose ID (%d) is smaller than the " + "number of base node IDs (%d). Some functions may not work " + "properly.", e->getNodeIndex(i), getNumberOfBaseNodes()); return; }