Skip to content

Commit

Permalink
Quietened down debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Nov 8, 2013
1 parent 3fb4d47 commit e4f2225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osgUtil/LineSegmentIntersector.cpp
Expand Up @@ -387,7 +387,7 @@ void LineSegmentIntersector::intersect(osgUtil::IntersectionVisitor& iv, osg::Dr

if (getPrecisionHint()==USE_DOUBLE_CALCULATIONS)
{
OSG_NOTICE<<"Using double intersections"<<std::endl;
OSG_INFO<<"Using double intersections"<<std::endl;
typedef LineSegmentIntersectorUtils::TriangleIntersector<osg::Vec3d, osg::Vec3d::value_type> TriangleIntersector;
osg::TriangleFunctor< TriangleIntersector > ti;

Expand All @@ -398,7 +398,7 @@ void LineSegmentIntersector::intersect(osgUtil::IntersectionVisitor& iv, osg::Dr
}
else
{
OSG_NOTICE<<"Using float intersections"<<std::endl;
OSG_INFO<<"Using float intersections"<<std::endl;
typedef LineSegmentIntersectorUtils::TriangleIntersector<osg::Vec3f, osg::Vec3f::value_type> TriangleIntersector;
osg::TriangleFunctor< TriangleIntersector > ti;

Expand Down

0 comments on commit e4f2225

Please sign in to comment.