Skip to content

Commit

Permalink
chore: use console.log instead of write
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Mar 25, 2019
1 parent 3cd81af commit 9ddfa83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class WdioTeamcityReporter extends WdioReporter {
this[event] = (...args) =>
flow(buildFormatter(event, opts), msg => {
if (msg) {
this.write(msg);
console.log(msg);
}
})(...args);
});
Expand Down

0 comments on commit 9ddfa83

Please sign in to comment.