Quietened down some verbose debug messages

This commit is contained in:
Robert Osfield
2017-01-20 17:06:55 +00:00
parent 10b6f7aa47
commit ed596c3335
3 changed files with 9 additions and 9 deletions

View File

@@ -56,13 +56,13 @@ void StateAttribute::setUpdateCallback(StateAttributeCallback* uc)
if (delta!=0)
{
OSG_INFO<<"Going to set StateAttribute parents"<<std::endl;
OSG_DEBUG<<"Going to set StateAttribute parents"<<std::endl;
for(ParentList::iterator itr=_parents.begin();
itr!=_parents.end();
++itr)
{
OSG_INFO<<" Setting StateAttribute parent"<<std::endl;
OSG_DEBUG<<" Setting StateAttribute parent"<<std::endl;
(*itr)->setNumChildrenRequiringUpdateTraversal((*itr)->getNumChildrenRequiringUpdateTraversal()+delta);
}