Converted osg::notify to OSG_INFO

This commit is contained in:
Robert Osfield
2010-05-28 16:24:04 +00:00
parent eff8dc5d63
commit 37dd1298f2
17 changed files with 198 additions and 198 deletions

View File

@@ -300,7 +300,7 @@ void daeWriter::apply( osg::Transform &node )
else
{
currentNode->setId(getNodeName(node, "transform").c_str());
osg::notify( osg::WARN ) << "some other transform type. Missing " << node.getNumChildren() << " children" << std::endl;
OSG_WARN << "some other transform type. Missing " << node.getNumChildren() << " children" << std::endl;
}
}
@@ -313,7 +313,7 @@ void daeWriter::apply( osg::Transform &node )
void daeWriter::apply( osg::CoordinateSystemNode &node )
{
osg::notify( osg::WARN ) << "CoordinateSystemNode. Missing " << node.getNumChildren() << " children" << std::endl;
OSG_WARN << "CoordinateSystemNode. Missing " << node.getNumChildren() << " children" << std::endl;
}