diff --git a/MeshLib/Elements/Element.cpp b/MeshLib/Elements/Element.cpp index 9a58a705cc78e762996e2748a516ced3eab51bd1..14a3d088db217ebc66dfd8cdd6f79a061057134f 100644 --- a/MeshLib/Elements/Element.cpp +++ b/MeshLib/Elements/Element.cpp @@ -189,12 +189,14 @@ bool Element::isBoundaryElement() const #ifndef NDEBUG std::ostream& operator<<(std::ostream& os, Element const& e) { - os << "Element " << e._id << " @ " << &e + os << "Element #" << e._id << " value " << e._value << " @ " << &e << " with " << e.getNNeighbors() << " neighbours\n"; unsigned const nnodes = e.getNNodes(); MeshLib::Node* const* const nodes = e.getNodes(); - os << nnodes << " nodes: { "; + os << "MeshElemType: " + << static_cast<std::underlying_type<MeshElemType>::type>(e.getGeomType()) + << " with " << nnodes << " nodes: { "; for (unsigned n = 0; n < nnodes; ++n) os << nodes[n]->getID() << " @ " << nodes[n] << " "; os << "}\n";