- Timestamp:
- 05/28/10 18:22:02 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/OpenFlight/FltExportVisitor.cpp
r10491 r11489 118 118 if (_recordsStr.is_open()) 119 119 { 120 osg::notify( osg::WARN )<< "fltexp: FltExportVisitor destructor has an open temp file." << std::endl;120 OSG_WARN << "fltexp: FltExportVisitor destructor has an open temp file." << std::endl; 121 121 // This should not happen. FltExportVisitor::complete should close 122 122 // this file before we get to this destructor. 123 123 return; 124 124 } 125 osg::notify( osg::INFO )<< "fltexp: Deleting temp file " << _recordsTempName << std::endl;125 OSG_INFO << "fltexp: Deleting temp file " << _recordsTempName << std::endl; 126 126 FLTEXP_DELETEFILE( _recordsTempName.c_str() ); 127 127 } … … 357 357 { 358 358 std::string warning( "fltexp: Non-Geometry Drawable encountered. Ignoring." ); 359 osg::notify( osg::WARN )<< warning << std::endl;359 OSG_WARN << warning << std::endl; 360 360 _fltOpt->getWriteResult().warn( warning ); 361 361 continue; … … 392 392 { 393 393 std::string warning( "fltexp: Unknown PrimitiveSet type." ); 394 osg::notify( osg::WARN )<< warning << std::endl;394 OSG_WARN << warning << std::endl; 395 395 _fltOpt->getWriteResult().warn( warning ); 396 396 return; … … 430 430 { 431 431 std::string warning( "fltexp: Unknown PrimitiveSet type." ); 432 osg::notify( osg::WARN )<< warning << std::endl;432 OSG_WARN << warning << std::endl; 433 433 _fltOpt->getWriteResult().warn( warning ); 434 434 return; … … 462 462 // a Node, there's no way to continue traversal, so just return.) 463 463 std::string warning( "fltexp: Unknown Node in OpenFlight export." ); 464 osg::notify( osg::WARN )<< warning << std::endl;464 OSG_WARN << warning << std::endl; 465 465 _fltOpt->getWriteResult().warn( warning ); 466 466 return;
