Print libuv counters after http_simple exits

pull/22966/head
Ryan Dahl 2011-10-06 15:02:27 -07:00
parent c344fbc285
commit f018be3b5f
1 changed files with 3 additions and 0 deletions

View File

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