Skip to content

Commit

Permalink
Improved error message
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Oct 7, 2024
1 parent 3b67840 commit 5fec281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/components/plugins/PluginSource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function loadExternalPluginSource(source: string) {

const module = await import(/* @vite-ignore */ source)
.catch((error) => {
console.error('Failed to load plugin source:', error);
console.error(`ERR: Failed to load plugin from ${source}:`, error);
return null;
})
.then((module) => {
Expand Down

0 comments on commit 5fec281

Please sign in to comment.