Skip to content
Snippets Groups Projects
Commit 7ff18efb authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Change checkNonlinearNodeId msg to warning.

Since (most) parts of the Mesh are not dependent on this property,
this is merely a warning.
parent ff4ed739
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment