Changed the message about not finding plugin so that it's notify level is INFO

This commit is contained in:
Robert Osfield
2009-02-10 20:07:00 +00:00
parent aef27c4387
commit 6df979f8c8

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