Skip to content

Commit

Permalink
Merge pull request #120 from apigee/b132901226
Browse files Browse the repository at this point in the history
remove extra newlines from console output
  • Loading branch information
srinandan authored May 18, 2019
2 parents d2737bc + e8239e3 commit 69c89d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports.init = function init(stubConfig) {
if(record.startsWith('error') || record.startsWith('warn')) {
console.error(record);
} else {
console.log(record);
process.stdout.write(record);
}
}
}
Expand Down

0 comments on commit 69c89d4

Please sign in to comment.