Reduced debug message level, and added a notify message for when an image isn't loaded

This commit is contained in:
Robert Osfield
2013-08-22 10:05:29 +00:00
parent fcde15e136
commit 464628b5c4
2 changed files with 12 additions and 4 deletions

View File

@@ -482,12 +482,12 @@ public:
{
if ((_objectsHandled[la]++)==0)
{
OSG_NOTICE<<"LayerAttributeOperator for "<<la<<" required, assigning one."<<std::endl;
OSG_INFO<<"LayerAttributeOperator for "<<la<<" required, assigning one."<<std::endl;
_operatorList.insert(new LayerAttributesOperator(&node, la));
}
else
{
OSG_NOTICE<<"LayerAttributeOperator for "<<la<<" not required, as one already assigned."<<std::endl;
OSG_INFO<<"LayerAttributeOperator for "<<la<<" not required, as one already assigned."<<std::endl;
}
}