From e2dfecfffc037aebf806881cdfa1fc2a93e47334 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 28 May 2010 16:49:45 +0000 Subject: [PATCH] Converted osg::notify to OSG_INFO etc. --- src/osgPlugins/osg/AsciiStreamOperator.h | 2 +- src/osgPlugins/osg/XmlStreamOperator.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/osg/AsciiStreamOperator.h b/src/osgPlugins/osg/AsciiStreamOperator.h index 7296ab242..4eab77afc 100644 --- a/src/osgPlugins/osg/AsciiStreamOperator.h +++ b/src/osgPlugins/osg/AsciiStreamOperator.h @@ -214,7 +214,7 @@ public: { if ( prop._name!=enumString ) { - OSG_NOTIFY(osg::WARN) << "AsciiInputIterator::readProperty(): Unmatched property " + OSG_WARN << "AsciiInputIterator::readProperty(): Unmatched property " << enumString << ", expecting " << prop._name << std::endl; } prop._name = enumString; diff --git a/src/osgPlugins/osg/XmlStreamOperator.h b/src/osgPlugins/osg/XmlStreamOperator.h index 2532daf1a..c255eedd1 100644 --- a/src/osgPlugins/osg/XmlStreamOperator.h +++ b/src/osgPlugins/osg/XmlStreamOperator.h @@ -417,7 +417,7 @@ public: enumString = '#' + enumString; if ( prop._name!=enumString ) { - OSG_NOTIFY(osg::WARN) << "XmlInputIterator::readProperty(): Unmatched property " + OSG_WARN << "XmlInputIterator::readProperty(): Unmatched property " << enumString << ", expecting " << prop._name << std::endl; } }