- Timestamp:
- 05/28/10 18:22:02 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/OpenFlight/PrimaryRecords.cpp
r10283 r11489 70 70 { 71 71 std::string id = in.readString(8); 72 osg::notify(osg::DEBUG_INFO)<< "ID: " << id << std::endl;72 OSG_DEBUG << "ID: " << id << std::endl; 73 73 74 74 uint32 format = in.readUInt32(); 75 osg::notify(osg::DEBUG_INFO)<< "Format: " << format << std::endl;75 OSG_DEBUG << "Format: " << format << std::endl; 76 76 document._version = format; 77 77 … … 79 79 80 80 std::string revisionTime = in.readString(32); 81 osg::notify(osg::INFO)<< "Last revision: " << revisionTime << std::endl;81 OSG_INFO << "Last revision: " << revisionTime << std::endl; 82 82 83 83 in.forward(4*2); … … 132 132 loc->set( originLat, originLong ); 133 133 _header->setUserData( loc ); 134 osg::notify(osg::INFO)<< "DB lat=" << originLat << " lon=" << originLong << std::endl;134 OSG_INFO << "DB lat=" << originLat << " lon=" << originLong << std::endl; 135 135 136 136 document.setHeaderNode(_header.get()); … … 201 201 { 202 202 std::string id = in.readString(8); 203 osg::notify(osg::DEBUG_INFO)<< "ID: " << id << std::endl;203 OSG_DEBUG << "ID: " << id << std::endl; 204 204 205 205 /*int16 relativePriority =*/ in.readInt16(); … … 397 397 if ((length_x*length_y*length_z)==0.0f) 398 398 { 399 osg::notify(osg::NOTICE)<<"Warning: OpenFlight DegreeOfFreedom::readRecord() found erroneous axis definition:"<<std::endl;400 osg::notify(osg::NOTICE)<<" localOrigin="<<localOrigin<<std::endl;401 osg::notify(osg::NOTICE)<<" pointOnXAxis="<<pointOnXAxis<<std::endl;402 osg::notify(osg::NOTICE)<<" pointInXYPlane="<<pointInXYPlane<<std::endl;399 OSG_NOTICE<<"Warning: OpenFlight DegreeOfFreedom::readRecord() found erroneous axis definition:"<<std::endl; 400 OSG_NOTICE<<" localOrigin="<<localOrigin<<std::endl; 401 OSG_NOTICE<<" pointOnXAxis="<<pointOnXAxis<<std::endl; 402 OSG_NOTICE<<" pointInXYPlane="<<pointInXYPlane<<std::endl; 403 403 404 404 xAxis.set(1.0f,0.0f,0.0f);
