Made a output message output as osg::DEBUG only.

This commit is contained in:
Robert Osfield
2001-12-04 15:56:08 +00:00
parent 03589f190f
commit 3e940e0b33

View File

@@ -94,7 +94,7 @@ osgDB::ReaderWriter::ReadResult ReaderWriterOBJ::readNode(const std::string& fil
osg_mtl = new osg::StateSet*[obj->nummaterials];
for (i = 0; i < obj->nummaterials; i++) {
GLMmaterial* omtl = &(obj->materials[i]);
cerr << "mtl: " << omtl->name << endl;
osg::notify(DEBUG) << "mtl: " << omtl->name << endl;
osg::StateSet* stateset = new osg::StateSet;
osg_mtl[i] = stateset;