Skip to content
Snippets Groups Projects
Commit 14a2efe1 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

[Mesh] improve the log

parent 638f1ca7
No related branches found
No related tags found
No related merge requests found
......@@ -273,12 +273,10 @@ void Mesh::checkNonlinearNodeIDs() const
if (e->getNodeIndex(i) >= getNumberOfBaseNodes())
continue;
DBUG(
"Node %d is a non-linear node, but the ID is smaller "
"than the number of base nodes %d.",
ERR("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());
ERR("Found a nonlinear node whose ID is smaller than base node IDs."
"Some functions may not work properly.");
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