From 6df979f8c8146494518af9bdc9ec0f6250ea1ccc Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 10 Feb 2009 20:07:00 +0000 Subject: [PATCH] Changed the message about not finding plugin so that it's notify level is INFO --- 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