Skip to content
Snippets Groups Projects
Commit 552e301a authored by Tom Fischer's avatar Tom Fischer
Browse files

Using logog for logging within the tet mesh element.

parent 31cb32ff
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,8 @@
* Created on 2012-05-02 by Karsten Rink
*/
#include "logog/include/logog.hpp"
#include "Node.h"
#include "Tri.h"
......@@ -90,7 +92,7 @@ const Element* TemplateTet<NNODES,CELLTETTYPE>::getFace(unsigned i) const
nodes[j] = _nodes[_face_nodes[i][j]];
return new Tri(nodes);
}
std::cerr << "Error in MeshLib::Element::getFace() - Index does not exist." << std::endl;
ERR("Error in MeshLib::Element::getFace() - Index %d does not exist.", i);
return NULL;
}
......
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