From 270883d3f4a2599c9fd913b0c29b84d182085ee5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 1 Oct 2013 16:20:20 +0000 Subject: [PATCH] =?UTF-8?q?From=20Bj=C3=B6rn=20Blissing,=20"I=20propose=20?= =?UTF-8?q?making=20the=20following=20outputs=20a=20little=20bit=20more=20?= =?UTF-8?q?silent.=20In=20my=20mind=20it=20would=20suffice=20with=20OSG=5F?= =?UTF-8?q?DEBUG=20(compared=20to=20OSG=5FNOTICE)=20for=20these=20informat?= =?UTF-8?q?ion=20messages."?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/osgAnimation/LinkVisitor.cpp | 2 +- src/osgAnimation/RigGeometry.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgAnimation/LinkVisitor.cpp b/src/osgAnimation/LinkVisitor.cpp index b8db5f25a..1dc4f67c1 100644 --- a/src/osgAnimation/LinkVisitor.cpp +++ b/src/osgAnimation/LinkVisitor.cpp @@ -41,7 +41,7 @@ void LinkVisitor::link(AnimationUpdateCallbackBase* cb) result += cb->link(_animations[i].get()); _nbLinkedTarget += result; } - OSG_NOTICE << "LinkVisitor links " << result << " for \"" << cb->getName() << '"' << std::endl; + OSG_DEBUG << "LinkVisitor links " << result << " for \"" << cb->getName() << '"' << std::endl; } void LinkVisitor::handle_stateset(osg::StateSet* stateset) diff --git a/src/osgAnimation/RigGeometry.cpp b/src/osgAnimation/RigGeometry.cpp index d38cc678e..bd2957d0f 100644 --- a/src/osgAnimation/RigGeometry.cpp +++ b/src/osgAnimation/RigGeometry.cpp @@ -109,7 +109,7 @@ void RigGeometry::buildVertexInfluenceSet() _vertexInfluenceSet.buildVertex2BoneList(); _vertexInfluenceSet.buildUniqVertexSetToBoneSetList(); - OSG_NOTICE << "uniq groups " << _vertexInfluenceSet.getUniqVertexSetToBoneSetList().size() << " for " << getName() << std::endl; + OSG_DEBUG << "uniq groups " << _vertexInfluenceSet.getUniqVertexSetToBoneSetList().size() << " for " << getName() << std::endl; } void RigGeometry::computeMatrixFromRootSkeleton()