fix(系统设置): 加载插件异常会导致服务无法启动

This commit is contained in:
AgAngle 2023-10-10 18:24:55 +08:00 committed by 刘瑞斌
parent 01c028adf2
commit be66e80e96
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public class PluginLoadService {
try {
loadPlugin(fileName);
msPluginManager.startPlugin(plugin.getId());
} catch (Exception e) {
} catch (Throwable e) {
LogUtils.error("初始化插件异常" + plugin.getFileName(), e);
}
});