Skip to content

Commit

Permalink
feat(basic): support additional field
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Apr 2, 2018
1 parent be9496c commit b50cad8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/reporters/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ export default class BasicReporter {
l.push(logObj.message)

this.stream.write(l.join(' ') + '\n')

if (logObj.additional) {
this.stream.write(logObj.additional + '\n')
}
}
}

0 comments on commit b50cad8

Please sign in to comment.