From 92b4e6ea54978e087568ca17f75a1aca97306f80 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 10 Feb 2009 20:09:18 +0000 Subject: [PATCH] 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 --- src/osgDB/DynamicLibrary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgDB/DynamicLibrary.cpp b/src/osgDB/DynamicLibrary.cpp index 78dbea659..e71d74ee2 100644 --- a/src/osgDB/DynamicLibrary.cpp +++ b/src/osgDB/DynamicLibrary.cpp @@ -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