Skip to content

Commit

Permalink
fix: better warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Apr 30, 2024
1 parent 31e784b commit 439e933
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,8 @@ export class Plugin implements IPlugin {
scope && `task: ${scope}`,
`plugin: ${this.name}`,
`root: ${this.root}`,
...(err.code ? [`code: ${err.code}`] : []),
...(err.message ? [`message: ${err.message}`] : []),
'See more details with DEBUG=*',
]).join('\n')
return err
Expand Down

0 comments on commit 439e933

Please sign in to comment.