Skip to content

Commit

Permalink
fix: warn when existing plugin fails to load
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored Oct 3, 2023
1 parent 5c77f52 commit 44dca37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/JANA/Services/JPluginLoader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void JPluginLoader::attach_plugins(JComponentManager* jcm) {
break;
} catch (...) {
paths_checked << "Loading failure: " << dlerror() << std::endl;
LOG_DEBUG(m_logger) << "Loading failure: " << dlerror() << LOG_END;
LOG_WARN(m_logger) << "Loading failure: " << dlerror() << LOG_END;
continue;
}
}
Expand Down

0 comments on commit 44dca37

Please sign in to comment.