Skip to content

Commit b50cad8

Browse files
author
Pooya Parsa
committed
feat(basic): support additional field
1 parent be9496c commit b50cad8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/reporters/basic.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,9 @@ export default class BasicReporter {
1717
l.push(logObj.message)
1818

1919
this.stream.write(l.join(' ') + '\n')
20+
21+
if (logObj.additional) {
22+
this.stream.write(logObj.additional + '\n')
23+
}
2024
}
2125
}

0 commit comments

Comments
 (0)