Convesion of osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 15:47:52 +00:00
parent e753be1b20
commit a79a8d30f9
67 changed files with 775 additions and 785 deletions

View File

@@ -20,7 +20,7 @@ using namespace osg;
View::View():
Object(true)
{
// OSG_NOTIFY(osg::NOTICE)<<"Constructing osg::View"<<std::endl;
// OSG_NOTICE<<"Constructing osg::View"<<std::endl;
setLightingMode(HEADLIGHT);
@@ -52,7 +52,7 @@ View::View(const osg::View& view, const osg::CopyOp& copyop):
View::~View()
{
OSG_NOTIFY(osg::INFO)<<"Destructing osg::View"<<std::endl;
OSG_INFO<<"Destructing osg::View"<<std::endl;
if (_camera.valid())
{
@@ -82,7 +82,7 @@ View::~View()
}
#endif
OSG_NOTIFY(osg::INFO)<<"Done destructing osg::View"<<std::endl;
OSG_INFO<<"Done destructing osg::View"<<std::endl;
}
void View::take(osg::View& rhs)