Skip to content

Commit

Permalink
Revert "Use process.stdout in node_console backend"
Browse files Browse the repository at this point in the history
This reverts commit bf8bfbb.
  • Loading branch information
mixu committed Jun 18, 2012
1 parent bf8bfbb commit 109ebf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/node_console.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function style(str, style) {

module.exports = {
// backend
write: function(str) { process.stdout.write(str); },
write: function(str) { console.log(str); },
end: function() {},
// filter which allows you to disable logging selectively via process.ENV
// Note: invoke with the name of your ENV or a string
Expand Down

0 comments on commit 109ebf0

Please sign in to comment.