fix(plugins): improve errors handling and reporting (#2597)

This commit is contained in:
Skylot
2025-12-22 21:26:43 +00:00
parent b78745a87b
commit 02ea3be8f2
9 changed files with 240 additions and 43 deletions
@@ -82,7 +82,7 @@ public class PluginSettings {
LOG.info("Plugin installed: {}", metadata);
requestReload();
} catch (Exception e) {
LOG.error("Install failed", e);
LOG.error("Plugin install failed", e);
mainWindow.showLogViewer(LogOptions.forLevel(Level.ERROR));
}
});