Changed notication level to INFO, merged changed from OSG-2.8 branch using:

svn merge -r 9751:9752 http://www.openscenegraph.org/svn/osg/OpenSceneGraph/branches/OpenSceneGraph-2.8
This commit is contained in:
Robert Osfield 2009-02-10 20:09:18 +00:00
parent 17da548343
commit 92b4e6ea54

View File

@ -126,8 +126,8 @@ DynamicLibrary::HANDLE DynamicLibrary::getLibraryHandle( const std::string& libr
}
else
{
notify(WARN) << "Warning: dynamic library '" << libraryName << "' does not exist (or isn't readable):" << std::endl;
notify(WARN) << dlerror() << std::endl;
notify(INFO) << "Warning: dynamic library '" << libraryName << "' does not exist (or isn't readable):" << std::endl;
notify(INFO) << dlerror() << std::endl;
}
}
#endif