Skip to content

Commit

Permalink
[minor] Dont console.dir in example server
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Aug 3, 2011
1 parent e68a3ac commit f48c26d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/chroot-jail/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ if (process.argv.length === 4) {
}

// start the http server
server = require('http').createServer(function (req,res) {
console.dir('server.js got a request');
server = require('http').createServer(function (req, res) {
res.end(process.cwd());
});

Expand Down

0 comments on commit f48c26d

Please sign in to comment.