Skip to content

Commit

Permalink
rephrase the error message to be more consistent and clear
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomontero committed Feb 25, 2025
1 parent 6168eac commit eb46101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/qdl.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class QdlFlasher {

qdlProcess.on('close', (output) => {
if (output !== 0) {
return reject(new Error('The device flashing failed, please check the logs for more information'));
return reject(new Error('Unable to complete device flashing. See logs for further details.'));
} else {
return resolve();
}
Expand Down

0 comments on commit eb46101

Please sign in to comment.