externalpluginmanager: print full exception when plugin can't be loaded (#2847)

This commit is contained in:
ThatGamerBlue
2020-11-05 00:10:46 +00:00
committed by GitHub
parent d6766297e8
commit d2c2b577bd

View File

@@ -762,7 +762,7 @@ public class ExternalPluginManager
}
catch (Throwable ex)
{
log.error("plugin {} could not be loaded. {} {}", pluginId, ex.toString(), ex.getMessage());
log.error("Plugin {} could not be loaded.", pluginId, ex);
}
return scannedPlugins;