Browse Source

Fix #563

tags/release-3.11.0
Decebal Suiu 3 months ago
parent
commit
62b6162ec2
1 changed files with 2 additions and 7 deletions
  1. 2
    7
      pf4j/src/main/java/org/pf4j/AbstractPluginManager.java

+ 2
- 7
pf4j/src/main/java/org/pf4j/AbstractPluginManager.java View File

try { try {
loadPluginFromPath(pluginPath); loadPluginFromPath(pluginPath);
} catch (PluginRuntimeException e) { } catch (PluginRuntimeException e) {
log.error(e.getMessage(), e);
log.error("Cannot load plugin '{}'", pluginPath, e);
} }
} }


// resolve plugins
try {
resolvePlugins();
} catch (PluginRuntimeException e) {
log.error(e.getMessage(), e);
}
resolvePlugins();
} }


/** /**

Loading…
Cancel
Save