Skip to content

Commit

Permalink
Merge pull request #246 from wdconinc/patch-2
Browse files Browse the repository at this point in the history
fix: warn when existing plugin fails to load
  • Loading branch information
nathanwbrei authored Oct 4, 2023
2 parents 5c77f52 + 44dca37 commit 32cae2e
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 32cae2e

Please sign in to comment.