Browse Source

Print libuv counters after http_simple exits

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
f018be3b5f
  1. 3
      benchmark/http_simple.js

3
benchmark/http_simple.js

@ -110,3 +110,6 @@ server.listen(port, function () {
console.log('Listening at http://127.0.0.1:'+port+'/');
});
process.on('exit', function() {
console.error('libuv counters', process.uvCounters());
});

Loading…
Cancel
Save