File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ std::shared_ptr<const nixlPluginHandle> nixlPluginManager::loadPluginFromPath(co
119119 // Open the plugin file
120120 void * handle = dlopen (plugin_path.c_str (), RTLD_NOW | RTLD_LOCAL);
121121 if (!handle) {
122- NIXL_ERROR << " Failed to load plugin from " << plugin_path << " : " << dlerror ();
122+ NIXL_INFO << " Failed to load plugin from " << plugin_path << " : " << dlerror ();
123123 return nullptr ;
124124 }
125125
@@ -285,7 +285,7 @@ std::shared_ptr<const nixlPluginHandle> nixlPluginManager::loadPlugin(const std:
285285 }
286286
287287 // Failed to load the plugin
288- NIXL_ERROR << " Failed to load plugin '" << plugin_name << " ' from any directory" ;
288+ NIXL_INFO << " Failed to load plugin '" << plugin_name << " ' from any directory" ;
289289 return nullptr ;
290290}
291291
You can’t perform that action at this time.
0 commit comments