diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-10-06 15:02:27 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-10-06 15:02:27 -0700 |
commit | f018be3b5f6dad3a92cf41706ad5ed74dc221f6e (patch) | |
tree | f8895aedf4a1a0ae22b4c449fdca0a4a900f40dc /benchmark | |
parent | c344fbc2852adfa495c0701fdf0e577cddfd6305 (diff) | |
download | node-new-f018be3b5f6dad3a92cf41706ad5ed74dc221f6e.tar.gz |
Print libuv counters after http_simple exits
Diffstat (limited to 'benchmark')
-rw-r--r-- | benchmark/http_simple.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index cac406ce7f..120c2050cc 100644 --- a/benchmark/http_simple.js +++ b/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()); +}); |