File tree 1 file changed +3
-3
lines changed
arduino-ide-extension/src/node
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
84
84
} ) ;
85
85
} catch ( e ) {
86
86
this . responseService . appendToOutput ( {
87
- chunk : `Compilation error: ${ e } \n` ,
87
+ chunk : `Compilation error: ${ e . details } \n` ,
88
88
severity : 'error' ,
89
89
} ) ;
90
90
throw e ;
@@ -169,7 +169,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
169
169
} ) ;
170
170
} catch ( e ) {
171
171
this . responseService . appendToOutput ( {
172
- chunk : `${ firstToUpperCase ( task ) } error: ${ e } \n` ,
172
+ chunk : `${ firstToUpperCase ( task ) } error: ${ e . details } \n` ,
173
173
severity : 'error' ,
174
174
} ) ;
175
175
throw e ;
@@ -214,7 +214,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
214
214
} ) ;
215
215
} catch ( e ) {
216
216
this . responseService . appendToOutput ( {
217
- chunk : `Error while burning the bootloader: ${ e } \n` ,
217
+ chunk : `Error while burning the bootloader: ${ e . details } \n` ,
218
218
severity : 'error' ,
219
219
} ) ;
220
220
throw e ;
You can’t perform that action at this time.
0 commit comments