From Paul Martz, "Make DelaunayTriangulator less verbose - It was outputting a non-warning with notify level set to WARN; changed it to INFO to make it less verbose."

This commit is contained in:
Robert Osfield
2007-02-09 14:21:03 +00:00
parent 2a9d2bb25a
commit 7b8483e1be

View File

@@ -1120,7 +1120,7 @@ bool DelaunayTriangulator::triangulate()
prim_tris_ = new osg::DrawElementsUInt(GL_TRIANGLES, pt_indices.size(), &(pt_indices.front()));
osg::notify(osg::WARN) << "DelaunayTriangulator: process done, " << prim_tris_->getNumPrimitives() << " triangles remain\n";
osg::notify(osg::INFO) << "DelaunayTriangulator: process done, " << prim_tris_->getNumPrimitives() << " triangles remain\n";
return true;
}