Skip to content

Commit

Permalink
fixup! fixup! engine,plugin: prefixed example plugin location in win
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea committed Feb 25, 2023
1 parent 835f42b commit 87e5b8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/adios2/helper/adiosPluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,11 @@ bool PluginManager::LoadPlugin(const std::string &pluginName,
{
loaded = OpenPlugin(pluginName, pluginLibrary, *pathIt);
}
catch (...)
catch (std::exception e)
{
std::cout << "catch block\n";
helper::Log("Plugins", "PluginManager", "LoadPlugin",
std::string("Exception catched: ") + e.what(),
helper::LogMode::WARNING);
loaded = false;
}
++pathIt;
Expand Down

0 comments on commit 87e5b8d

Please sign in to comment.