fix: catch all errors that can occur during plugin installation and log the error#7375
Conversation
Review Summary by QodoCatch and log plugin installation errors to prevent startup crashes
WalkthroughsDescription• Wrap plugin installation in try-catch to prevent crashes • Log errors during plugin installation for debugging • Remove unnecessary npmrc configuration setting Diagramflowchart LR
A["Plugin Installation Loop"] --> B["Try Block"]
B --> C["Install Plugin"]
C --> D{Success?}
D -->|Yes| E["Continue"]
D -->|No| F["Catch Error"]
F --> G["Log Error Message"]
G --> E
File Changes1. src/static/js/pluginfw/installer.ts
|
Code Review by Qodo
1. logger.error used, not warn
|
|
You delete .npmrc for some reason? Is your AI haunted? |
No description provided.