Clean up of output

This commit is contained in:
Robert Osfield 2004-11-24 19:41:36 +00:00
parent 38f938619e
commit d8adf68ba8

View File

@ -3002,7 +3002,7 @@ osg::Node* DataSet::CompositeDestination::createPagedLODScene()
triple._callback->transform(matrix);
osg::notify(osg::NOTICE)<<"cluster culling matrix "<<matrix<<std::endl;
osg::notify(osg::INFO)<<"cluster culling matrix "<<matrix<<std::endl;
// moving cluster culling callback pagedLOD node.
pagedLOD->setCullCallback(triple._callback);
@ -3903,7 +3903,17 @@ void DataSet::_buildDestination(bool writeToDisk)
if (_destinationGraph.valid())
{
std::string filename = _tileBasename+_tileExtension;
if (_archive.valid())
{
my_notify(osg::NOTICE)<<"started DataSet::writeDestination("<<_archiveName<<")"<<std::endl;
my_notify(osg::NOTICE)<<" archive file = "<<_archiveName<<std::endl;
my_notify(osg::NOTICE)<<" archive master file = "<<filename<<std::endl;
}
else
{
my_notify(osg::NOTICE)<<"started DataSet::writeDestination("<<filename<<")"<<std::endl;
}
if (_databaseType==LOD_DATABASE)
{
@ -3967,7 +3977,17 @@ void DataSet::_buildDestination(bool writeToDisk)
}
}
}
if (_archive.valid())
{
my_notify(osg::NOTICE)<<"completed DataSet::writeDestination("<<_archiveName<<")"<<std::endl;
my_notify(osg::NOTICE)<<" archive file = "<<_archiveName<<std::endl;
my_notify(osg::NOTICE)<<" archive master file = "<<filename<<std::endl;
}
else
{
my_notify(osg::NOTICE)<<"completed DataSet::writeDestination("<<filename<<")"<<std::endl;
}
}
else