Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/nixl_plugin_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ std::shared_ptr<const nixlPluginHandle> nixlPluginManager::loadPluginFromPath(co
// Open the plugin file
void* handle = dlopen(plugin_path.c_str(), RTLD_NOW | RTLD_LOCAL);
if (!handle) {
NIXL_ERROR << "Failed to load plugin from " << plugin_path << ": " << dlerror();
NIXL_INFO << "Failed to load plugin from " << plugin_path << ": " << dlerror();
return nullptr;
}

Expand Down Expand Up @@ -285,7 +285,7 @@ std::shared_ptr<const nixlPluginHandle> nixlPluginManager::loadPlugin(const std:
}

// Failed to load the plugin
NIXL_ERROR << "Failed to load plugin '" << plugin_name << "' from any directory";
NIXL_INFO << "Failed to load plugin '" << plugin_name << "' from any directory";
return nullptr;
}

Expand Down