Skip to content

Commit

Permalink
chore: output error details
Browse files Browse the repository at this point in the history
  • Loading branch information
murongg committed Feb 8, 2024
1 parent a43d3fc commit 743f23d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cle-cli/src/commands/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async function compileBasic(options: CompileOptions) {
}))

if (err) {
logger.error(`[-] COMPILATION ERROR. ${err.message}`)
logger.error(`[-] COMPILATION ERROR. ${err.message} ${(err as any).response?.data?.message || ''}`)
return false
}

Expand Down

0 comments on commit 743f23d

Please sign in to comment.