Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Add prefix to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaitanya-Chatla committed Nov 21, 2018
1 parent e59a5ac commit 46d5119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/impl/jacoco.js
Expand Up @@ -21,7 +21,7 @@

jacocoParse.parseContent(jacocoString, function (err, data) {
if (err) {
err = new Error(err);
err = new Error('Failed to parse jacoco report: ' + err);

logger.error(err);
return reject(err);
Expand Down

0 comments on commit 46d5119

Please sign in to comment.